/* ==========================================================================
   Estilos Especiales para Login y Registro - CorreoMax
   ========================================================================== */

body {
    background-color: #f4f7f6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden; /* Evita scroll horizontal accidental */
}

/* Panel Visual Izquierdo */
.login-image {
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem;
}

.login-image i {
    font-size: 6rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Panel Formulario Derecho */
.login-form-wrapper {
    background-color: #f4f7f6;
}

.login-form {
    width: 100%;
    max-width: 420px;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.login-form h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.login-form p.text-muted {
    margin-bottom: 2rem;
}

.form-floating > label {
    color: #777;
}

/* Botones y Enlaces */
.btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.4);
    color: white;
}

.register-link {
    color: #764ba2;
    text-decoration: none;
    font-weight: 600;
}

.register-link:hover {
    text-decoration: underline;
}