/* login.css — Estilos específicos de login.php */
:root { --cafe:#E0A0B5; --crema:#FDF2F6; --oscuro:#A86080; }
    html,body { height:100%; font-family:'DM Sans',sans-serif; }
    .login-wrap { min-height:100vh; display:flex; align-items:center; justify-content:center; padding:1rem; }
    .login-card { background:#fff; border-radius:20px; box-shadow:0 20px 60px rgba(0,0,0,.35); width:100%; max-width:400px; overflow:hidden; }
    .login-header { background:linear-gradient(135deg,var(--cafe),var(--oscuro)); color:var(--crema); text-align:center; padding:2rem 1.5rem 1.5rem; }
    .login-header .logo { font-size:3rem; line-height:1; margin-bottom:.5rem; }
    .login-header h1 { font-family:'Playfair Display',serif; font-size:1.4rem; margin:0; }
    .login-header p  { font-size:.8rem; opacity:.7; margin:.25rem 0 0; }
    .login-body { padding:1.8rem 2rem 1.5rem; }
    .form-label { font-size:.78rem; font-weight:600; color:#555; text-transform:uppercase; letter-spacing:.5px; }
    .form-control,.form-select { border-radius:10px; border:1.5px solid #e0d6cc; padding:.6rem 1rem; font-size:.9rem; }
    .form-control:focus,.form-select:focus { border-color:var(--cafe); box-shadow:0 0 0 3px rgba(168,96,128,.15); }
    .btn-login { background:linear-gradient(135deg,var(--cafe),var(--oscuro)); color:var(--crema); border:none; border-radius:10px; padding:.65rem; font-size:.95rem; font-weight:600; width:100%; }
    .btn-login:hover { opacity:.88; color:var(--crema); }
    .alert-error { background:#fdf0f0; border:1px solid #f5c6c6; border-radius:10px; color:#c0392b; font-size:.82rem; padding:.6rem 1rem; margin-bottom:1rem; }
    .login-footer { text-align:center; font-size:.72rem; color:#bbb; padding:0 2rem 1.5rem; }
    .select-tienda option { font-weight:500; }
