/*
 * krakryp/assets/css/auth.css
 * Hoja de estilos para las páginas de Login y Registro.
 */

/* --- Contenedor Principal --- */
.auth-container {
    background-color: #1a1a2e; /* Fondo oscuro azulado */
    min-height: calc(100vh - 72px); /* Altura completa menos el header */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* --- Tarjeta de Autenticación --- */
.auth-card {
    background-color: #16213e; /* Un azul un poco más claro que el fondo */
    color: #e0e0e0;
    padding: 2.5rem;
    border-radius: 15px;
    width: 100%;
    max-width: 480px;
    border: 1px solid #0f3460;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3), 0 0 30px rgba(2, 179, 247, 0.2);
    animation: neon-glow 2s infinite alternate;
}

@keyframes neon-glow {
    from {
        box-shadow: 0 0 15px rgba(0, 191, 255, 0.3), 0 0 30px rgba(2, 179, 247, 0.2);
    }
    to {
        box-shadow: 0 0 25px rgba(0, 191, 255, 0.5), 0 0 45px rgba(2, 179, 247, 0.3);
    }
}

/* --- Cabecera de la Tarjeta --- */
.auth-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.logo-icon {
    font-size: 3rem;
    color: #00bfff; /* Azul cian brillante */
    margin-bottom: 1rem;
}

.auth-title {
    color: #ffffff;
    font-weight: bold;
}

.auth-subtitle {
    color: #a9a9a9;
}

/* --- Formularios --- */
.auth-form .form-label {
    color: #bdc3c7; /* Gris claro */
}

.form-control, .form-select {
    background-color: #1e2749;
    border: 1px solid #4a4e69;
    color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background-color: #1e2749;
    color: #ffffff;
    border-color: #00bfff;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

/* Para que el placeholder no sea blanco */
.form-control::placeholder {
    color: #6c757d;
}

.input-group-text {
    background-color: #1e2749;
    border: 1px solid #4a4e69;
    color: #00bfff;
}

#togglePassword {
    cursor: pointer;
}

/* --- Botón Principal --- */
.auth-btn {
    background: linear-gradient(45deg, #00bfff, #1e90ff);
    border: none;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

/* --- Pie de la Tarjeta --- */
.auth-footer {
    text-align: center;
    font-size: 0.9rem;
}

.auth-footer a {
    color: #00bfff;
    text-decoration: none;
    font-weight: bold;
}

.auth-footer a:hover {
    text-decoration: underline;
}

