* {
    margin: 0;
    padding: 0;
    border: 0;
}

:root {
    --primary-color: #5D3E00;
    --secondary-color: #916100;
    --outline-color: #8C8C8C;
}

body {
    line-height: 1;
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    color: #333;
}

#registration_wrapper {
    width: auto;
    padding: 40px 140px;
    display: flex;
    justify-content: space-between;
    gap: 58px;
}

.registration_from {
    width: 100%;
    padding: 0;
}
.registration_from h3{
    color: #5D3E00;    
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px; /* 160.714% */
}
.require {
    color: red;
}
.mobile-container {
    display: flex;
    align-items: center;
    border: 1px solid var(--outline-color);
    border-radius: 30px;
  }  
  .mobile-container input.mobile-input {
    border: none !important;
    outline: none;
    padding: 8px;    
    box-shadow: none;
    margin-bottom: 0;
  }
  
  .separator {
    width: 1px;
    height: 24px;
    background-color: #ccc;
    margin: 0 10px;
  }
  
  .otp-button {
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;  
  }
  .otp-button:hover {
    color: var(--secondary-color);
    border: none;
    background: transparent;
  }

.form-wrapper {
    margin-bottom: 25px;
    color: #5D3E00;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 30px; /* 166.667% */
}
.form-control:focus{
    border: none !important;
    outline: none;
    box-shadow: none;
}

.registration_from form input.form-control,
.registration_from form select.form-control {
    border: 1px solid var(--outline-color);
    display: block;
    height: 45px;
    padding: 0 20px;
    background: none;
    margin-bottom: 0;
    width: -webkit-fill-available;
    border-radius: 23px;
    width: -moz-available;
}

.form-wrapper label {
    margin-bottom: 5px;
    display: block;
}
.otp_lable{
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
}
.otp_lable span#getotp_mob, .otp_lable span#getotp_email{
    border: 1px solid var(--primary-color);
    padding: 0 35px;
    border-radius: 25px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.5s all;
}
.otpInput{
    display: flex;
    justify-content: space-between;
}
.otpInput input{
    border-right:none !important;
    border-radius: 27px 0 0 27px !important;
}
.otp span{
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    white-space: nowrap;
}
.otpInput button{
    display: inline-block;
    white-space: nowrap;
    padding: 0 35px;
    border-radius: 0 27px 27px 0;
    border: 1px solid var(--outline-color);
    background-color: transparent;    
    color: var(--primary-color);
    cursor: pointer;
}
.hide {
    display: none !important;
  }

.otp_lable span#getotp_mob:hover, .otp_lable span#getotp_email:hover{
    background-color: var(--primary-color);
    color: #fff;
}
.inputField div{
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 15px;
}
.inputField input[type="text"]{
    appearance: textfield;              /* Standard */
    -webkit-appearance: textfield;      /* Chrome, Safari */
    -moz-appearance: textfield;   
    width: 45px;
    height: 45px;
    border-radius: 6px !important;
    outline: none;
    font-size: 24px;
    text-align: center;
    border: 1px solid var(--primary-color) !important;
}
.resendotp{
    display: flex;
    justify-content: space-between;
    width: 50%;   
    font-size: 14px;
}
.timeLeft{
    color: #555;
    font-weight: 500;
}

.resendotp a{
    
    color: var(--primary-color);
}

.otp{
    display: flex;
    justify-content: space-between;
    gap: 15px;
}


.action_button {
    display: flex;
    gap: 15px;
}

.action_button input[type="button"], .action_button input[type="submit"] {
    border: none;
    width: 150px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);    
    font-size: 16px;
    color: var(--primary-color);
    border-radius: 28px;
    transition: 0.3s all;
    background-color: transparent;
}
.action_button input.action_primary{
    background-color: var(--primary-color);
    color: #fff;   
}
.action_button input.action_secondary:hover{
    background-color: var(--primary-color);
    color: #fff;
}

.action_button input.action_primary:hover{
    background-color: transparent;
    color: var(--primary-color);
}
.img_block {
    background-color: #F8F2E6;
  border-radius: 20px;
  flex: 0 0 65%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.img_block::after{
    content: '';
    background: url('../images/regimage.png') no-repeat center bottom;     
    width: 100%;
    height: 100%;
    padding: 0;
    background-size: contain;
    position: absolute;
    z-index: 99999;
    margin-top: 0%;
}
/* tooltip */
.tooltip {
    position: relative;
    display: inline-block;    
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: auto !important;
    background-color: #e9e2d8;
    color: #000;
    text-align: center;
    padding: 5px 10px !important;
    border-radius: 4px !important;
    position: absolute !important;
    font-size: 1.3rem;
    white-space: nowrap;
    margin-bottom: 12px;
    top: -50px;
    left: 39%;
  }
  .tooltip span.tooltiptext::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #e9e2d8;
    transform: rotate(45deg);
    bottom: -5px;
    left: 39%;
}
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    cursor: pointer;
  }
  .modal_wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3rem;

  }

  @media only screen and (max-width: 767px) {
    #registration_wrapper{
        padding: 0 20px;
    }
    .img_block {
      display: none;
    }
  }


.registration-success-popup {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.registration-success-popup .modal-content {
    padding: 30px;
}

.registration-success-popup h2 {
    color: #1979c3;
    margin-bottom: 15px;
}

.registration-success-popup p {
    margin-bottom: 25px;
    font-size: 16px;
}

.registration-success-popup .action-primary {
    background: #1979c3;
    color: #fff;
    border: 1px solid #1979c3;
    padding: 10px 20px;
    border-radius: 3px;
    text-decoration: none;
}

.registration-success-popup .action-primary:hover {
    background: #006bb4;
    border-color: #006bb4;
}

.registration-success-popup .action-secondary {
    background: #fff;
    color: #1979c3;
    border: 1px solid #1979c3;
    padding: 10px 20px;
    border-radius: 3px;
}

.registration-success-popup .action-secondary:hover {
    background: #f5f5f5;
}

#otp-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #007bff;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
    vertical-align: middle;
}
.form-message, .shgLength.error{
    font-size: 12px;
    color: red;
}
.modal-popup.modal-slide{
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.45);
}

.modal-popup.modal-slide header.modal-header{
    border-bottom: none;
}

.modal-popup.modal-slide footer.modal-footer{
    border-top: none !important;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
