    body {
      margin: 0;
      font-family: 'Segoe UI', 'Inter', sans-serif;
      background-color: #f3f2f1;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      min-height: 100vh;
      padding: 20px;
    }

    .container {
      max-width: 420px;
      width: 100%;
    }

    .logo {
      width: 100px;
      margin: 20px auto;
      display: block;
    }

    .card {
      background: #fff;
      padding: 30px 25px;
      border-radius: 10px;
    }

    h2 {
      font-size: 22px;
      margin-bottom: 10px;
       color: #1E1E1E;
    }

    .subtitle {
      color: #444;
      margin-bottom: 15px;
    }

    .terms {
      font-size: 13px;
      color: #555;
      margin-bottom: 20px;
      text-align: left;
    }

    .terms a {
      color: #0057d9;
      text-decoration: none;
    }
       

    /* button  */

.btn {
  width: 100%;
  max-width: 372px;
  height: 46px;
  padding: 12px;
  margin: 8px auto;
  border: none;
  border-radius: 8px; /* ✅ LESS rounded */
  background-color: #4640DE; /* Your desired color */
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: white;
  transition: background 0.3s ease;
}

/* 
    .btn:hover {
      background: #f0f0f0;
    } */

    .btn .icon {
      margin-right: 10px;
      font-size: 18px;
    }

    .google-btn {
      border-color: #ccc;
    }

    .apple-btn {
      font-weight: bold;
    }

    .divider {
      margin: 20px 0;
      position: relative;
      text-align: center;
    }

    .divider span {
      background: #fff;
      padding: 0 10px;
      color: #666;
      position: relative;
      z-index: 1;
    }

    .divider::before {
      content: "";
      height: 1px;
      background: #ccc;
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      z-index: 0;
    }

    label {
      display: block;
      text-align: left;
      margin-bottom: 5px;
      font-weight: bold;
      font-size: 14px;

    }

    .required {
      color: red;
    }
p {
        font-size: 14px;
      }
input[type="email"],
input[type="country_code"],
input[type="phone_number"],
input[type="text"] {
  width: 100%;
  max-width: 372px;
  height: 46px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
}


    .primary-btn {
      background-color: #4640DE;
      color: #fff;
      font-weight: 400;
      justify-content: center;
      border: none;
      font-size: 14px;

      transition: background 0.3s;
    }
/* 
    .primary-btn:hover {
      background-color: #adc2f4;
    } */

    footer {
      margin-top: 20px;
      font-size: 13px;
      color: #555;
      text-align: center;
    }

    footer a {
      color: #0057d9;
      text-decoration: none;
    }

    @media (max-width: 480px) {
      .card {
        padding: 25px 20px;
      }
      h2 {
        font-size: 20px;
      }
    }