/* =====================================================
   auth.css — Estilos Premium para Login y Registro 
   ===================================================== */
.auth-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: var(--cream);
}

.auth-card {
    background: #fff;
    width: 100%;
    max-width: 460px;
    border-radius: 24px;
    box-shadow: var(--sh-hover);
    padding: 50px;
    border: 1px solid var(--border);
}

.auth-card-registro {
    max-width: 600px;
}

.auth-header {
    text-align: center;
    margin-bottom: 35px;
}

.auth-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--ch);
    margin-bottom: 8px;
}

.auth-header h1 em {
    color: var(--red);
    font-style: normal;
}

.auth-input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1.5px solid var(--border2);
    background: #f8fafc;
    transition: 0.3s;
    outline: none;
    font-size: 15px;
    color: var(--ch);
}

.auth-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(176, 37, 36, 0.08);
    background: #fff;
}

/* ── SOCIAL BUTTONS (Agregados) ── */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
    font-size: 11px;
    color: var(--lgray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border2);
}

.social-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid var(--border2);
    border-radius: 12px;
    background: #fff;
    color: var(--ch);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--cream);
    border-color: var(--lgray);
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: var(--lgray);
}

.auth-footer a {
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
}

/* ── FILE INPUTS PREMIUM ── */
.auth-form .form-control {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 14px;
    color: var(--lgray);
    background-color: #f8fafc;
    border: 1.5px dashed var(--border2);
    /* Borde punteado para indicar subida */
    border-radius: 12px;
    transition: 0.3s;
}

.auth-form .form-control:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: none;
    outline: none;
}

/* Estilo para el botón de 'Seleccionar archivo' dentro del input */
.auth-form input[type=file]::file-selector-button {
    background: var(--ch);
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 8px;
    margin-right: 15px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: 0.2s;
}

.auth-form input[type=file]::file-selector-button:hover {
    background: var(--red);
}