.login-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 28rem;
    border: 1px solid rgba(165, 243, 252, 0.3);
    border-radius: 20px;
    background: rgba(11, 43, 90, 0.596);
    padding: 2rem;
    box-shadow: 0 30px 90px rgba(8, 145, 178, 0.28);
}

.login-input {
    width: 100%;
    border: 1px solid rgba(207, 250, 254, 0.7);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.349);
    padding: 1rem;
    color: #1e293b;
    box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.06);
    outline: none;
    transition: all 0.2s ease;
}

.login-input::placeholder {
    color: #94a3b8;
}

.login-input:focus {
    background: #ffffff85;
    box-shadow:
        inset 0 2px 4px rgba(15, 23, 42, 0.06),
        0 0 0 4px rgba(34, 211, 238, 0.2);
}

.btn-login {
    width: 100%;
    border-radius: 20px;
    margin-top: 0.75rem;
    background: linear-gradient(90deg, #045191, #0c6aa0, #0a68a7);
    padding: 1rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 60px rgba(30, 127, 197, 0.562);
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 45px rgba(187, 208, 209, 0.5);
}

.btn-login:active {
    transform: scale(0.98);
}

.btn-aceptar {
    width: 100%;
    margin-top: 0.75rem;
    background: linear-gradient(90deg, #045191, #0c6aa0, #0a68a7);
    padding: 1rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 60px rgba(30, 127, 197, 0.562);
    transition: all 0.3s ease;
}