/* ehltd.css - Global Stylesheet for EH.SVI */
/* Added as part of Erickson Holding Rebrand */

body {
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { height: 100%; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      font-size: 14px; color: #ffffff;
      background: linear-gradient(to bottom, #ffffff 0%, #f0f0f0 100%);
      min-height: 100vh; display: flex; flex-direction: column;
    }

    /* ── Navbar ── */
    nav {
      background-color: #ffffff;
      padding: 0 24px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }
    .nav-brand {
      color: #fff;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-decoration: none;
    }
    .nav-logo {
      width: 38px;
      height: 38px;
      background-color: #fff;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    /* SVG shield logo */
    .nav-logo svg { width: 26px; height: 26px; }

    /* ── Main content ── */
    .content {
      flex: 1;
      display: flex;
      align-items: flex-start;
      padding: 48px 150px;
    }

    .login-card {
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      padding: 36px 32px;
      width: 100%;
      max-width: 360px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    }

    .login-card h1 {
      font-size: 22px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 4px;
    }
    .login-card .subtitle {
      font-size: 13px;
      color: #888;
      margin-bottom: 24px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 14px;
    }
    .form-group label {
      font-size: 12px;
      font-weight: 600;
      color: #555;
      text-transform: uppercase;
      letter-spacing: 0.4px;
    }
    .form-group input {
      padding: 10px 12px;
      font-size: 14px;
      border: 1px solid #d0d0d0;
      border-radius: 6px;
      outline: none;
      background: #fafafa;
      color: #333;
      transition: border-color 0.2s, background 0.2s;
      width: 100%;
    }
    .form-group input:focus {
      border-color: #4C3663;
      background: #fff;
    }
    .form-group input::placeholder { color: #bbb; }

    .forgot {
      display: block;
      text-align: right;
      font-size: 12px;
      color: #4C3663;
      text-decoration: none;
      margin-top: -8px;
      margin-bottom: 18px;
    }
    .forgot:hover { text-decoration: underline; }

    .btn-login {
      width: 100%;
      padding: 11px;
      font-size: 14px;
      font-weight: 700;
      background-color: #4C3663;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.2s;
      letter-spacing: 0.3px;
      margin-bottom: 18px;
    }
    .btn-login:hover { background-color: #3a2750; }

    .divider {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }
    .divider::before, .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #e0e0e0;
    }
    .divider span { font-size: 12px; color: #aaa; white-space: nowrap; }

    .btn-social {
      width: 100%;
      padding: 10px;
      font-size: 13px;
      font-weight: 600;
      background: #fff;
      border: 1px solid #d0d0d0;
      border-radius: 6px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 10px;
      color: #333;
      transition: background 0.15s, border-color 0.15s;
    }
    .btn-social:hover { background: #f5f5f5; border-color: #bbb; }
    .btn-social svg { width: 18px; height: 18px; flex-shrink: 0; }

    /* ── Footer ── */
    footer {
      background-color: #e8e8e8;
      border-top: 1px solid #d5d5d5;
      padding: 12px 20px;
      text-align: center;
      font-size: 12px;
      color: #777;
      line-height: 1.8;
    }
    footer a { color: #4C3663; text-decoration: none; }
    footer a:hover { text-decoration: underline; }

    /* ── Mobile ── */
    @media (max-width: 600px) {
      .content {
        padding: 24px 16px;
        justify-content: center;
      }
      .login-card {
        padding: 28px 20px;
        max-width: 100%;
        border-radius: 12px;
      }
      .form-group input, .btn-login, .btn-social {
        font-size: 16px;
        padding: 12px 14px;
      }
      nav { padding: 0 16px; }
      footer { font-size: 11px; padding: 14px 16px; }
      .sep { display: none; }
      .footer-links {
        display: flex; flex-wrap: wrap; justify-content: center;
        gap: 6px 12px; margin-top: 4px;
      }
    }
}
