@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

.pageform {
display: none;
}

#backbutton {
  margin: 0px 10px 12px 0 !important;
  margin-top: 0px;
  border:1px solid #CBD5E1;
}

#nextbutton, button[type="submit"] {
  border:1px solid #1D4ED8;
  margin-left: 16x;
  margin-bottom: 12px;
  background:#1D4ED8;
}
button[type="submit"]:hover{
  background:#1E40AF;
  border:1px solid #1E40AF;
  color:#fff;
}

#nextbutton {
/*position: absolute;*/
margin-left: 0px;
}

.btn {
  border-radius: 7px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;;
  line-height: 28px;
  padding: 10px 29px;
}

.headings {
  color: #000;
  font-weight: 600;
  padding-bottom: 5px;
  margin-top:0;
  font-size: 22px;
  font-family: 'Inter', sans-serif;
  line-height: normal;
}

input[type=radio] {
  margin: 0 12px 0 0;
  position: relative;
}

input.text,
input.title,
input[type=email],
input[type=password],
input[type=tel],
input[type=text],
select,
textarea {
padding: 10px !important;
font-family: 'Inter', sans-serif;
}
h2#getstarted{ margin:0 0; font-family: 'Inter', sans-serif;}
h2{color: #000;font-size:22px;font-weight: 600; line-height: normal;}
p{color: #1A202C; font-size:16px; line-height: 24px;}
body h4{color: #1A202C; font-size:15px; line-height:20px; font-family: 'Inter', sans-serif;}
label
{font-size:16px; font-family: 'Inter', sans-serif;}
.form-group select, .form-group input{
  background: #EDF2F7;
  border: none;
  border-radius: 4px;
  color: #1A202C;
  font-size:12px;
  height:34px; 
  letter-spacing: 0.15px;
  line-height: 24px;
  font-family: 'Inter', sans-serif;  
  padding: 7px 12px !important;
}
.form-group label{color: #1A202C; font-size:16px; font-family: 'Inter', sans-serif; font-weight: 400; line-height: normal;}
.form-group  select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='5' viewBox='0 0 10 5' fill='none'%3E%3Cpath d='M0 0L5 5L10 0H0Z' fill='black' fill-opacity='0.54'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 5px;
}

span, a, p, h2, h3, h4, h5, h6 {
font-family: 'Roboto', sans-serif;
}

.text-center {
    text-align: center;
}
.font-bold {
    font-weight: bold;
}
.font-medium {
    font-weight: 500;
}
.light-black {
    color: rgba(26, 32, 44, 0.56);
}
.text-black {
    color: #1A202C;
}
.text-xs {
    font-size: 14px;
    line-height: 20px;
}
.text-sm {
    font-size: 18px;
    line-height: 24px;
}

/* Utilities */
.pl-0 {
  padding-left: 0;
}
.px-0 {
  padding-left: 0;
  padding-right: 0;
}
.mr-2 {
  margin-right: 8px !important;
}
.m-0 {
  margin: 0 !important;
}
.position-relative {
  position: relative !important;
}
.d-none {
  display: none;
}
.text-white {
  color: #fff;
}
.font-normal {
  font-weight: normal;
}
.mt-4 {
  margin-top: 16px;
}

.loading-spinner {
  width: 33px;
  height: 33px;
  /* Apply the animation */
  animation: spin 1s linear infinite;
  display: block;
  margin:0 auto 10px auto;
}

/* Define the rotation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.getstarted-wrapper #getstarted {
  color: #000;
  font-size: 24px;
  line-height: 16px;
}
.getstarted-wrapper #description {
  color: #383838;
  font-size: 14px;
  line-height: normal;
}
.getstarted-wrapper #howmuch {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 16px
}
.getstarted-wrapper label {
  color: #2D3648;
  font-size: 16px;
}

/* 1. Target the custom radio class */
.square-radio {
  /* Remove the default browser circle styling */
  -webkit-appearance: none;
  appearance: none;
  
  /* Set your desired square dimensions */
  width: 20px;
  height: 20px;
  
  /* Create the square boundary box */
  border: 2px solid #CBD2E0; /* Net Pay Advance orange color */
  background-color: #fff;
  border-radius: 3px;
  
  /* Alignment tuning */
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

/* 2. Selected state */
.square-radio:checked {
    background-color: #1E40AF; /* blue fill */
    border-color: #1E40AF;
}
.radio input[type=radio].square-radio:focus {
  outline: 0;
}

/* 3. White tick mark */
.square-radio:checked::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: url("/wp-content/uploads/2026/06/Check.svg") no-repeat center center;
    background-size: contain;
    left: 1px;
    top: 1px;
}

/* Alignment for the label text */
.square-radio-label {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 28px;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .label {
    font-size:14px;
  }
}