* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #2a3f54;
    /* Fondo de respaldo */
    overflow: hidden;
}

/* Video de fondo */
#video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
    cursor: pointer;
}

/* Contenedor con tus colores originales: #c7c6d096 */
.container {
    width: 400px;
    background: #c7c6d096;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #000;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: all 0.3s ease;
}

.container h1 {
    text-align: center;
    font-size: 28px;
    color: #2a3f54;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Estilo de los inputs */
.form-input {
    margin-bottom: 20px;
}

.form-input input {
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    font-size: 16px;
    color: #000;
    padding: 0 25px;
    outline: none;
    transition: 0.3s;
}

.form-input input:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: #2a3f54;
}

/* Botón Principal (Azul oscuro original) */
.btn-login {
    width: 100%;
    height: 50px;
    background: #2a3f54;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    color: white;
    font-weight: 600;
    margin-top: 10px;
    transition: transform 0.3s, background 0.3s;
}

.btn-login:hover {
    background: #1a2735;
    transform: scale(1.03);
}

/* Links y botones secundarios */
.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.login-link a {
    color: #2a3f54;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

.extra-buttons {
     text-align: center;
     margin-top: 20px;
    /* display: flex;
    justify-content: center;
     */
}

.btn-secundario {
    background: #337ab7;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.footer-text {
    font-size: 11px;
    text-align: center;
    margin-top: 30px;
    color: #444;
    line-height: 1.4;
}
/*icono de usuario*/
.user-icon {
    position: fixed; /* o absolute si lo quieres dentro de un contenedor */
    top: 20px;
    right: 20px;
    font-size: 22px;
    color: white;
    cursor: pointer;
    z-index: 1000;
}

.user-icon i {
    background: rgba(0,0,0,0.5);
    padding: 10px;
    border-radius: 50%;
}
