/* ImmoGest — auth.css */
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;background:#0F6E56;min-height:100vh;display:flex;align-items:center;justify-content:center;padding:20px}
.auth-wrap{width:100%;max-width:420px}
.auth-box{background:#fff;border-radius:20px;padding:40px 36px;box-shadow:0 24px 64px rgba(0,0,0,.18)}
.auth-logo{display:flex;align-items:center;gap:12px;margin-bottom:30px}
.auth-logo-icon{width:44px;height:44px;background:#0F6E56;border-radius:13px;display:flex;align-items:center;justify-content:center}
.auth-logo-icon svg{width:24px;height:24px;fill:#E1F5EE}
.auth-logo-name{font-size:20px;font-weight:700;color:#1a1a18;letter-spacing:-.03em}
.auth-logo-sub{font-size:11px;color:#888780;margin-top:2px}
.auth-title{font-size:22px;font-weight:700;color:#1a1a18;letter-spacing:-.03em;margin-bottom:6px}
.auth-sub{font-size:13px;color:#888780;margin-bottom:24px;line-height:1.5}
.fg{margin-bottom:14px}
.fl{font-size:12px;font-weight:600;color:#5F5E5A;display:block;margin-bottom:5px}
.fi{width:100%;font-size:14px;padding:11px 14px;border:1.5px solid #E8E6E0;border-radius:10px;outline:none;font-family:inherit;color:#1a1a18;transition:border-color .15s,box-shadow .15s}
.fi:focus{border-color:#0F6E56;box-shadow:0 0 0 3px rgba(15,110,86,.1)}
.auth-btn{width:100%;font-size:14px;font-weight:700;padding:13px;background:#0F6E56;color:#E1F5EE;border:none;border-radius:10px;cursor:pointer;font-family:inherit;margin-top:6px;transition:background .15s}
.auth-btn:hover{background:#0A5A45}
.auth-error{background:#FCEBEB;color:#A32D2D;font-size:12px;font-weight:500;padding:10px 14px;border-radius:8px;margin-bottom:14px;border:1px solid #F7C1C1}
.auth-success{background:#EAF3DE;color:#3B6D11;font-size:12px;font-weight:500;padding:10px 14px;border-radius:8px;margin-bottom:14px;border:1px solid #C0DD97}
.auth-info{background:#E6F1FB;color:#185FA5;font-size:12px;font-weight:500;padding:10px 14px;border-radius:8px;margin-bottom:14px;border:1px solid #B5D4F4}
.auth-footer{text-align:center;margin-top:18px}
.auth-link{font-size:12px;color:#0F6E56;text-decoration:none}
.auth-link:hover{text-decoration:underline}
.pwd-wrap{position:relative}
.pwd-eye{position:absolute;right:12px;top:50%;transform:translateY(-50%);background:none;border:none;cursor:pointer;color:#888780;padding:2px;display:flex;align-items:center}
.pwd-eye:hover{color:#1a1a18}
@media(max-width:480px){.auth-box{padding:28px 20px}}
