/* Auth Pages Styles */
body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background:#f8f9fa;
    color:#333;
}
.auth-header{position:sticky;top:0;background:#003580;color:#fff;height:56px;display:flex;align-items:center}
.auth-header-inner{max-width:1100px;margin:0 auto;width:100%;display:flex;justify-content:space-between;align-items:center;padding:0 16px}
.auth-logo{font-weight:700}
.auth-actions{display:flex;gap:12px;align-items:center}
.auth-container{
    max-width: 480px;
    margin: 48px auto 80px;
    background:#fff;
    border-radius:8px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    padding:24px;
}
.auth-title{font-size:22px;font-weight:700;margin-bottom:8px;color:#003580}
.auth-subtitle{font-size:14px;color:#666;margin-bottom:18px}
.intro-box{background:#fff;border:1px solid #e6e6e6;border-radius:8px;padding:16px 18px;margin-bottom:12px}
.form-group{margin-bottom:14px}
.form-group label{display:block;font-size:12px;color:#666;margin-bottom:6px}
.form-control{width:100%;padding:12px 14px;border:1px solid #e0e0e0;border-radius:6px;font-size:14px;outline:none}
.form-control:focus{border-color:#0071c2;box-shadow:0 0 0 3px rgba(0,113,194,.1)}
.auth-panel{border:1px solid #e6e6e6;border-radius:8px;padding:16px 18px;margin-top:8px}
.btn{display:inline-block;width:100%;padding:12px 16px;border:none;border-radius:6px;background:#0071c2;color:#fff;font-weight:600;cursor:pointer}
.btn:hover{background:#005a9e}
.divider{display:flex;align-items:center;gap:12px;color:#666;font-size:12px;margin:14px 0}
.divider::before,.divider::after{content:"";flex:1;height:1px;background:#e6e6e6}
.social-row{display:flex;gap:18px;justify-content:center;margin:10px 0 6px}
.social-btn{width:64px;height:64px;border:1px solid #e6e6e6;border-radius:8px;background:#fff;cursor:pointer}
.social-btn i{font-size:22px;color:#333}
.helper{display:none}
.terms-note{font-size:12px;color:#666;margin-top:12px}
.copyright{font-size:12px;color:#666;margin-top:6px}

/* Toast notifications */
.toast-container{position:fixed;top:20px;right:20px;z-index:10000;display:flex;flex-direction:column;gap:10px}
.toast{min-width:280px;max-width:360px;background:#fff;border-left:4px solid #0071c2;box-shadow:0 8px 24px rgba(0,0,0,.12);border-radius:6px;padding:12px 14px 12px 12px;display:flex;align-items:flex-start;gap:10px;animation:slideIn .25s ease}
.toast.success{border-color:#28a745}
.toast.error{border-color:#dc3545}
.toast.warning{border-color:#ffc107}
.toast .icon{font-size:18px;margin-top:2px;color:#0071c2}
.toast.success .icon{color:#28a745}
.toast.error .icon{color:#dc3545}
.toast.warning .icon{color:#ffc107}
.toast .content{color:#333;font-size:14px;line-height:1.4}
.toast .close{margin-left:auto;background:none;border:none;color:#666;font-size:18px;cursor:pointer}
@keyframes slideIn{from{transform:translateX(20px);opacity:0}to{transform:translateX(0);opacity:1}}
.error{margin-top:12px;color:#dc3545;font-size:13px}
.success{margin-top:12px;color:#28a745;font-size:13px}

