nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom right, #6caeff, #a02929); /* Degradado suave como fondo */
    padding: 10px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 2000px; /* Bordes redondeados */
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
 
.bar {
    height: 3px;
    width: 25px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    transition: background 0.3s, transform 0.3s;
}

.nav-list a:hover {
    background-color: #5d6e83;
    transform: scale(1.1);
    border-radius: 9px; /* Bordes redondeados */
}

.submenu {
    display: none;
    position: absolute;
    background-color: #595b5e;
    border-radius: 5px;
    z-index: 1000;
    margin-top: 10px;
}

.nav-list li:hover .submenu {
    display: block;
}

.submenu a {
    display: block;
    padding: 10px;
}

.submenu a:hover {
    background-color: #494444;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        display: none;
        width: 100%;
        background-color: #353535;
        position: absolute;
        top: 60px;
        left: 0;
    }
    
    .nav-list.active {
        display: flex;
    }
}

h2 {
    color: white;
}

p {
    color: white;
}

body, html {
    height: 100%;
    background-repeat: no-repeat;
    background: url(../img/login-bg.JPG) no-repeat center center fixed;
    background-size: 100% 100%;
}

.card-container.card {
    width: 350px;
    padding: 40px 40px;
}

.btn {
    font-weight: 700;
    height: 36px;
    user-select: none;
    cursor: default;
}

.card {
    background-color: rgba(255, 255, 255, 0.3); /* Fondo semitransparente */
    backdrop-filter: blur(15px); /* Difumina el fondo detrás del cuadro */
    -webkit-backdrop-filter: blur(15px); /* Compatibilidad con navegadores basados en WebKit */
    padding: 20px 25px 30px;
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); /* Sombra para darle un poco de profundidad */
    width: 350px;
    margin: 50px auto; /* Centra el cuadro */
}

.profile-img-card {
    width: 96px;
    height: 96px;
    margin: 0 auto 10px;
    display: block;
    border-radius: 50%;
}

.profile-name-card {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0 0;
    min-height: 1em;
}

.reauth-email {
    display: block;
    color: #404040;
    line-height: 2;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.form-signin #inputEmail,
.form-signin #inputPassword {
    direction: ltr;
    height: 44px;
    font-size: 16px;
}

.form-signin input[type=email],
.form-signin input[type=password],
.form-signin input[type=text],
.form-signin button {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
}

.form-signin .form-control:focus {
    border-color: rgb(104, 145, 162);
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgb(104, 145, 162);
}

.btn.btn-signin {
    padding: 0px;
    font-weight: 700;
    font-size: 14px;
    height: 36px;
    border-radius: 3px;
    border: none;
    transition: all 0.218s;
}

.forgot-password {
    color: rgb(104, 145, 162);
}

.forgot-password:hover,
.forgot-password:active,
.forgot-password:focus {
    color: rgb(12, 97, 33);
}
