    @font-face {
      font-family: 'HighSpirited';
      src: url('HighSpirited.woff2') format('woff2'),
           url('HighSpirited.woff') format('woff'); 
      font-weight: normal;
      font-style: normal;
    }

    @font-face {
      font-family: 'Gallery';
      src: url('gallery.woff2') format('woff2'),
           url('gallery.woff') format('woff');
      font-weight: normal;
      font-style: normal;
    }

    @font-face {
      font-family: 'AvenirLTStd';
      src: url('AvenirLTStd.woff2') format('woff2'),
           url('AvenirLTStd.woff') format('woff');
      font-weight: normal;
      font-style: normal;
    } 
    /* Page / background */
    html,body{
      height:100%;
      margin:0;
      font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      color:var(--text-dark);
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    }
    .otp-boxes
    {
       text-align: center;
        margin: 0px auto;
        display: flex;
        justify-content: center;
        align-items: center; 
    }

    .bg {
      position:fixed;
      inset:0;
      background-image: url("login-bg.jpg");
      background-position:center;
      background-size:cover;
      background-repeat:no-repeat;
      filter: none;
      z-index: -2;
    }

    /* optional subtle overlay to ensure contrast */
    .overlay {
      position:fixed;
      inset:0;
      background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.06));
      z-index:-1;
    }

    .wrap {
      min-height:100%;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:40px 20px;
      box-sizing:border-box;
    }
    :root {
      --accent-1: #d7a591;
      --accent-2: #c88f75;
      --card-bg: rgba(255,255,255,0.98);
      --text-dark: #0f0f0f;
      --muted: #6b5b53;
      --radius: 12px;
      --shadow: 0 10px 30px rgba(12,10,8,0.25);
    }
    /* center column */
    .center-column{
      width:460px;
      max-width:92vw;
      text-align:center;
    }

    /* Top logo + heading */
    .brand {
      margin-bottom: 8px;
    }
    .brand .logo {
      width:86px;
      height:86px;
      margin:0 auto 6px;
    }
    .brand .title {
      font-family: "Playfair Display", serif;
      letter-spacing:2px;
      font-weight:600;
      font-size:22px;
      color: white;
      margin-top:6px;
    }

    /* welcome script */
    
      .welcome { 
        font-size: 1.5em;
        color: #fff;
        margin: 12px 0 20px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
        font-weight: bold;
        line-height: 1.5em;
    }

    /* Card */
    .card {
      background: var(--card-bg);
      border-radius:18px;
      box-shadow: var(--shadow);
      padding:28px 36px 36px;
      box-sizing:border-box;
      text-align:left;
      position:relative;
    }

    .card h1 {
        font-family: 'Gallery', serif;
        font-size: 1.2rem;
        margin: 6px 0 18px;
        text-align: center;
        font-weight: bold;
    }

    label {
      display:block;
      font-size:16px;
      color:var(--muted);
      margin-bottom:8px;
      font-weight:600;
      font-family: 'AvenirLTStd', sans-serif;
    }

    .field {
      margin-bottom:18px;
    }

    input[type="email"],
    input[type="password"] {
        width: 100%;
        padding: 10px 18px;
        border-radius: 8px;
        border: 1px solid rgba(200, 140, 110, 0.4);
        background-color: #e8f0fe;
        font-size: 16px;
        font-family: 'AvenirLTStd', sans-serif;
        color: #3f4146;
        box-sizing: border-box;
        transition: all 0.2s ease-in-out;
        outline: none;
    }
    
    
    
    input[type="email"]::placeholder,
    input[type="password"]::placeholder {
      color: #3f4146; /* subtle placeholder */
      font-weight: 500;
    }
    
    

    /* button */
    .actions {
      text-align:center;
      margin-top:8px;
    }
    .actions .btn {
      display: inline-block;
      padding: 10px 40px;
      border-radius: 30px;                 /* pill shape */
      border: none;
      font-family: 'Gallery', serif;       /* use your Gallery font */
      font-size: 18px;
      letter-spacing: 1px;
      background: linear-gradient(180deg, #d7a591, #c88f75); /* bronze gradient */
      color: #ffffff;                      /* dark brown text */
      text-transform: uppercase;           /* SUBMIT in all caps */
      cursor: pointer;
      box-shadow: inset 0 -4px 10px rgba(255,255,255,0.3),
                  0 4px 10px rgba(0,0,0,0.2);  /* inner shine + outer shadow */
      transition: all 0.2s ease-in-out;
      background: linear-gradient(76deg, #102140 1.46%, #1a2a5f 44.97%, #102140 81.86%);
      border-radius: 32px;
      width: 150px;
      font-family: 'Gallery';
      margin-top: 10px;
      font-weight: bold;
      font-size: 20px;
    }
    
    .btn:hover {
      transform: translateY(-2px);
    }
    
    .btn:active {
      transform: translateY(1px);
    }


    /* footer copy */
    .footer {
      margin-top:18px;
      text-align:center;
      font-size:14px;
      color: #fff;
      opacity:0.95;
      margin-top: 22px;
    }

    .copyright {
      margin-top:20px;
      font-size:18px;
      color:#fff;
      opacity:0.9;
    }

    /* small screens */
    @media (max-width:520px){
      .welcome{ font-size:30px; }
      .card{ padding:22px; border-radius:14px; }
      .brand .title{ font-size:18px; }
    }