    body {
      font-family: 'Segoe UI', sans-serif;
    }

    /* Gold curved header */
    .header-bg {
            background-image: url('img/headerbg.jpg');
      background-size: cover;
      background-position: center;
      height: 160px;
      width: 100%;
      border-bottom-left-radius: 50% 25%;
      border-bottom-right-radius: 50% 25%;
    }


.light-bg{
background-color: #f8f8f8;
}

.primary-card{
background-color: #f3f3f3;
border-radius: 10px;
}

.primary-btn{
background-color: linear-gradient(var(--gdark), var(--glight));
}


    .back-btn {
      position: absolute;
      top: 20px;
      left: 20px;
      color: #fff;
      text-decoration: none;
      font-size: 16px;
    }

    .back-btn:hover {
      color: #fff8d0;
    }

    /* Login box */
    .login-box {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      width: 90%;
      max-width: 380px;
      margin: 20px auto 20px;
      padding: 30px;
    }

    .form-control {
      border: none;
      border-bottom: 1px solid #ccc;
      border-radius: 0;
      padding-left: 0;
      font-size: 15px;
      box-shadow: none;
    }

    .form-control:focus {
      border-color: #b58a33;
      box-shadow: none;
    }

    .btn-gold {
      background-color: #8dc747;
      border: none;
      border-radius: 50px;
      color: #fff;
      font-weight: 600;
      padding: 10px 0;
      width: 100%;
      transition: 0.3s;
    }

    .btn-gold:hover {
      opacity: 0.9;
    }

    .captcha-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .captcha-img {
      background: #f8f8f8;
      border: 1px solid #ccc;
      border-radius: 5px;
      padding: 5px 10px;
      font-weight: 600;
      color: #6b2680;
      letter-spacing: 2px;
    }

    .footer {
      text-align: center;
      margin-top: 25px;
      font-size: 14px;
      color: #333;
    }

    .links a {
      color: #555;
      text-decoration: none;
      font-size: 14px;
    }

    .links a:hover {
      color: #b58a33;
    }

  