﻿body {
    min-height: 100vh;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: radial-gradient(circle at top left, #2f80ed 0, #1b1f3b 40%, #000000 100%);
    color: #f7f9fc;
}

.auth-wrapper {
    min-height: 100vh;
}

.auth-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 1rem;
    padding: 2.5rem 2.2rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
    max-width: 420px;
    width: 100%;
    margin: 1.5rem auto;
}

.auth-logo img {
    max-width: 230px;
    height: auto;
}

.auth-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-top: 0.6rem;
}

.auth-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f9fafb;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d1d5db;
}

.form-control {
    background-color: #020617;
    border: 1px solid #1f2937;
    border-radius: 0.5rem;
    color: #e5e7eb;
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
}

    .form-control:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.3);
        border-color: #22c55e;
    }

.btn-login {
    border-radius: 999px;
    padding: 0.65rem 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.link-recovery {
    font-size: 0.85rem;
}

    .link-recovery a {
        color: #60a5fa;
        text-decoration: none;
    }

        .link-recovery a:hover {
            text-decoration: underline;
        }

.auth-footer {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 1.5rem;
}

    .auth-footer a {
        color: #9ca3af;
        text-decoration: none;
    }

        .auth-footer a:hover {
            text-decoration: underline;
        }

@media (max-width: 576px) {
    .auth-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
}


/* Grupo de contraseña con icono de ojo */
.password-group .form-control {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.password-group .btn-password-toggle {
    background-color: #020617;
    border: 1px solid #1f2937;
    border-left: 0;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    padding: 0.65rem 0.9rem;
    color: #9ca3af;
}

    .password-group .btn-password-toggle:hover {
        color: #e5e7eb;
    }

    .password-group .btn-password-toggle:focus,
    .password-group .form-control:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.3);
        border-color: #22c55e;
    }
