
  .reg-page {
    min-height: calc(100vh - 70px);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 20px 60px;
  }
  .reg-title {
    font-size: 22px;
    /*font-weight: 800;*/
    color: var(--text);
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
  }
  .reg-wrap {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* Card-style field — matches app screenshot */
  .reg-card {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 14px;
    padding: 16px 18px 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .rc-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
  }
  .reg-card input[type="text"],
  .reg-card input[type="email"],
  .reg-card input[type="date"] {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #D0D0D0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
  }
  .reg-card input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(174,48,178,.1);
  }
  .reg-card input::placeholder { color: #BDBDBD; font-size: 13.5px; }
  .rc-hint { font-size: 12px; color: #BDBDBD; margin-top: 6px; }

  /* Mobile verified row */
  .mob-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F5F5F5;
    border: 1.5px solid #E0E0E0;
    border-radius: 8px;
    padding: 11px 14px;
  }
  .mob-row .mob-num {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
  }
  .tick-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #22C55E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
  }

  /* DOB with calendar icon */
  .dob-row { position: relative; }
  .dob-row input { padding-right: 46px; }
  .dob-row .cal-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #BDBDBD;
    pointer-events: none;
  }

  /* Radio buttons */
  .radio-list { display: flex; flex-direction: column; gap: 16px; margin-top: 6px; }
  .radio-item { display: flex; align-items: center; gap: 14px; cursor: pointer; }
  .radio-item input[type="radio"] { display: none; }
  .radio-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .2s;
  }
  .radio-circle::after {
    content: '';
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    transition: opacity .15s;
  }
  .radio-item input[type="radio"]:checked ~ .radio-circle::after { opacity: 1; }
  .radio-label { font-size: 15px; font-weight: 500; color: var(--text); }

  /* Register button */
  .reg-btn {
    width: 100%;
    /*padding: 17px;*/
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    margin-top: 8px;
    letter-spacing: 0.2px;
    transition: background .2s, transform .15s, box-shadow .2s;
  }
  .reg-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(174,48,178,.3);
  }
