/* .tiktok-embed {
    width: 300px !important;
    height: 490px !important;
}
.tiktok-embed section {
    display: none;
} */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-size: cover;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0; /* Ajuste para móviles */
}

.circular-img {
    border-radius: 50%;
}

.login-section {
    transition: height 0.5s ease-in-out;
    padding: 20px;
    background: transparent;
}

@media (max-width: 768px) {
    .login-section.full-height {
      height: 100vh; /* 100% de la altura de la ventana gráfica */
      margin-top: 4rem;
    }
  
    .login-section.normal-height {
      height: 1  30vh; 
    }
  }

.login-section h2 {
    margin-bottom: 20px;
}

.login-section form {
    display: flex;
    flex-direction: column;
}

.login-section label {
    margin-bottom: 5px;
}

.login-section input {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-section button {
    padding: 10px;
    font-size: 18px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-section button:hover {
    background-color: #0056b3;
}

.info-sidebar {
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid #ccc;
    display: flex;
    flex-direction: column;
}

.left-half, .right-half {
    width: 100%;
    text-align: justify;
}

.info-sidebar h3 {
    margin-top: 0;
}

.news-item, .video-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.news-item img, .video-item img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    border-radius: 5px;
}

.news-item p, .video-item p {
    margin: 0;
}

.contact-icons img {
    margin: 0 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
    color: #000;
    font-size: 24px;
}

@media (min-width: 768px) {
    .container {
        flex-direction: row;
        /* margin-top: 0;  */
        /* Elimina el margen superior en pantallas grandes */
    }

    .login-section {
        flex: 0 0 20%;
        border-right: 1px solid #ccc;
        border-top: none;
    }

    .info-sidebar {
        flex: 1;
        border-top: none;
        border-left: 1px solid #ccc;
        flex-direction: row;
        justify-content: space-between;
    }

    .left-half, .right-half {
        width: 48%;
    }
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#computerSVG {
    width: 400px;
    height: 300px;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: draw 2s linear forwards;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
        align-items: center;
        /* text-align: center; */
    }
    .news-item img {
        margin-bottom: 10px;
    }
}