.register-form-wrapper {
  background: #fff;
  padding: 20px;
  margin: 20px auto;
  max-width: 500px;
  border-radius: 10px;
}

.reg-container {
    text-align: center;
    color: #333;
    margin-left: 50px;
    margin-right: 50px;
}

.reg-container h1 {
  font-size: 24px;
  font-weight: bold;
  color: #002e6c;
  margin-bottom: 10px;
}

.reg-ref-id {
    font-size: 13px;
    color: #b3b1b1;
    margin-bottom: 30px;
}

.reg-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.reg-step {
  flex: 1;
  padding: 7px;
  border-radius: 20px;
  font-size: 12px;
 
  color: #fff;
  cursor: pointer;
}

    .reg-step.active {
        background: #002e6c;
        font-weight: bold;
    }
.reg-step.inactive { background: #aaa; }

.reg-form-section { display: none; text-align: left; }
.reg-form-section.active { display: block; }

.reg-form-group { margin-bottom: 20px; text-align: left; }
    .reg-form-group label {
        font-size: 12px;
      
        margin-bottom: 5px;
        display: block;
        color: #b3b1b1;
    }

.reg-form-group input,
.reg-form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.reg-currency-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.reg-currency-btn {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: white;
  font-weight: bold;
  cursor: pointer;
}
    .reg-currency-btn.active {
        background: #e9f6ff;
        border-color: #4db5ff;
        color: #002e6c;
    }

.reg-note {
  background: #f0f6ff;
  color: #002e6c;
  font-size: 12px;
  padding: 10px;
  border-radius: 6px;
  margin-top: 10px;
}

.reg-password-rules {
    background: #f0f6ff;
    padding: 10px;
    border-radius: 6px;
    font-size: 12px;
    margin-top: 10px;
    color: #002e6c;
}
.reg-password-rules ul { margin: 0; padding-left: 20px; }

.reg-password-wrapper {
  position: relative;
}
.reg-password-wrapper input {
  width: 100%;
  padding-right: 40px;
}
.toggle-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.reg-next-btn,
.reg-register-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #ffe13a;
    color: #002e6c;
    font-weight: bold;
    margin-top: 20px;
    -webkit-box-shadow: 0 6px 22px rgba(229, 199, 20, 0.33);
    box-shadow: 0 6px 22px rgba(229, 199, 20, 0.33);
}

    .reg-next-btn:disabled,
    .reg-register-btn:disabled {
        background: #ddd !important;
        color: #999 !important;
        cursor: not-allowed;
        -webkit-box-shadow: 0 0px 0px rgba(229, 199, 20, 0.33);
        box-shadow: 0 0px 0px rgba(229, 199, 20, 0.33);
    }

.reg-checkbox-group {
  margin: 15px 0;
  font-size: 13px;
  text-align: left;
}
.reg-checkbox-group label {
  display: flex;
  gap: 8px;
  cursor: pointer;
}

.reg-checkbox-text {
  flex: 1;
  line-height: 1.4;
}

.reg-login-link {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
}
.reg-login-link a {
  color: #002e6c;
  text-decoration: none;
}
.reg-login-link a:hover {
  text-decoration: underline;
}

h1.reg-main-title {
    margin: 0 auto;
    max-width: 70%;
    margin-bottom: 16px;
    text-align: center;
    font-size: 21px;
    font-weight: 900;
}