/* ============================================================
   BurgerSingh Franchise Portal — Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Lato', sans-serif; background: #f5f5f5; color: #333; min-height: 100vh; }

    .hero-banner { position: relative; }
    .banner-logo-bar { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; align-items: center; padding: 0 28px; gap: 12px; }
    .banner-logo-bar img.svg-logo { height: 64px; width: 64px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); }
    .brand-name { font-size: 26px; font-weight: 900; color: #e8312a; text-shadow: 1px 2px 6px rgba(0,0,0,0.4); letter-spacing: 0.5px; }

    .hero-banner { width: 100%; height: 90px; background-image: url("assets/banner.jpg"); background-size: cover; background-position: center; position: relative; overflow: hidden; }
    

    .main-wrapper { display: flex; justify-content: center; align-items: center; min-height: calc(100vh - 90px); background: #fff; padding: 60px 20px; }

    .signin-card { width: 100%; max-width: 460px; }
    .signin-card h2 { font-size: 24px; font-weight: 900; color: #222; margin-bottom: 6px; }
    .signin-card .subtitle { font-size: 15px; color: #555; margin-bottom: 24px; }

    .form-group { margin-bottom: 20px; }
    .form-group input { width: 100%; padding: 12px 16px; border: 1px solid #ccc; border-radius: 3px; font-size: 14px; font-family: 'Lato', sans-serif; color: #333; outline: none; transition: border-color .2s; }
    .form-group input:focus { border-color: #1a73e8; box-shadow: 0 0 0 2px rgba(26,115,232,.15); }
    .form-group input::placeholder { color: #aaa; }

    .btn-login { background: #1a73e8; color: #fff; border: none; padding: 12px 30px; font-size: 14px; font-weight: 700; font-family: 'Lato', sans-serif; border-radius: 3px; cursor: pointer; min-width: 120px; transition: background .2s; }
    .btn-login:hover { background: #1558b0; }
    .btn-login:disabled { background: #8ab4f8; cursor: not-allowed; }

    .msg { margin-top: 14px; padding: 12px 16px; border-radius: 4px; font-size: 13px; line-height: 1.6; display: none; }
    .msg.show    { display: block; }
    .msg.error   { background: #fdecea; border: 1px solid #f5c6c2; color: #c0392b; }
    .msg.info    { background: #e8f4fd; border: 1px solid #bee3f8; color: #1a5276; }
    .msg.success { background: #e8f8f0; border: 1px solid #b2dfdb; color: #1a7a4a; }
    .msg.warn    { background: #fff8e1; border: 1px solid #ffe082; color: #7d4d00; }

    #redirect-bar { display: none; margin-top: 14px; }
    .progress-track { background: #e0e0e0; border-radius: 99px; height: 5px; overflow: hidden; }
    .progress-fill  { height: 100%; background: #1a73e8; border-radius: 99px; width: 0%; }
    #redirect-bar p { font-size: 12px; color: #888; margin-top: 6px; }

    .spinner { display: inline-block; width: 13px; height: 13px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; vertical-align: middle; margin-right: 5px; }
    @keyframes spin { to { transform: rotate(360deg); } }