.login-title {
    text-align: center;
  }
  #login-page {
    display: flex;
  }
  .notice {
    font-size: 13px;
    text-align: center;
    color: #666;
  }
  .login {
    width: 40%;
    background: #FFF;
    padding: 70px;
  }
  .login a {
    margin-top: 25px;
    text-align: center;
  }
  
  .form-login label {
    text-align: left;
    font-size: 14px;
    margin-top: 20px;
    display: block;
    color: var(--primary-color);
    font-weight: 600;
  }

  .form-login .type-gender  label{
display: flex;
align-items: center;
justify-content: center;
margin: 0;
  }

  .type-gender span {
    margin: 0 30px 0px 6px;
    text-transform: capitalize;
}

  .type-gender input[type="radio"] {
    width: 20px;
    height: 20px;
    visibility: hidden;
}

input[type='radio']:after {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    top: 0px;
    vertical-align: top;
    left: -1px;
    position: relative;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid #d1d3d1;
    opacity: 1;
    cursor: pointer;
}

input[type='radio']:checked:after {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
input[type='radio']:checked+span{
    color:var(--primary-color);
    font-weight: 500;
}
  .input-type {
    width: 100%;
    background: rgba(1,95,201,0.04);
    border-radius: 10px;
    margin: 4px 0 10px 0;
    padding: 10px;
    display: flex;
    align-items: center;
  }
  .input-type i{
    width: 30px;
    color:var(--primary-color);
    opacity: 0.6;
    text-align: center;
    font-size: 17px;
  }
  .icon {
    padding: 4px;
    color: #666;
    min-width: 30px;
    text-align: center;
  }
  .input-type select,
  .input-type input {
    width: 100%;
    border: 0;
    background: none;
    font-size: 15px;
    padding: 4px 0;
    outline: none;
    color:var(--primary-color);
  }
  .input-type select {
    background-image: url(../images/svg/arrow-down.svg);
    background-position: center right;
    background-size: 20px;
    background-repeat: no-repeat;
}
  button[type="submit"] {
    width: 100%;
    border: 0;
    border-radius: 25px;
    padding: 14px;
    background: var(--secondary-color);
    color: #FFF;
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    transition: ease all 0.3s;
    font-family: "Raleway", sans-serif; 
  }
  button[type="submit"]:hover {
    opacity: 0.9;
    background: var(--secondary-color);
  }
  .login-images{
    position: absolute;
    bottom: 0;
    right:-30px;
    opacity: 0.5;
  }
  .background {
    width: 60%;
    padding:0;
    height: 100vh;

    background: rgb(233 217 151);
    background:linear-gradient(0deg, rgb(244 214 75 / 30%) 0%, rgba(0, 212, 255, 0) 100%);

    background-size:100%;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    flex-direction: row;
    position: relative;
    overflow: hidden;
  
  }

  .login-text{
    margin-top:150px;
    position: relative;
    z-index:99;
  }
  .login-text .heading h2 {
    font-weight: 400;
    color: var(--secondary-color);

}
.login-text .heading h2 span{
  font-weight: 600;
  color: #023b7a;
  
}


  .background h1 {
    max-width: 420px;
    color: #FFF;
    text-align: right;
    padding: 0;
    margin: 0;
  }
  .background p {
    max-width: 650px;
    color: #1a1a1a;
    font-size: 15px;
    text-align: right;
    padding: 0;
    margin: 15px 0 0 0;
  }
  .form-disclaimer small{
    font-size: 12px;
  }
  
  .checkbox label {
    display: inline;
    margin: 0;
  }






  /* disclamer text */
  .disclaimers-text .heading h2{
    font-size: 1.3rem;
  }
  .disclaimers-text .heading h5{
    font-size: 1rem;
  }
 

  .disclaimers-text p{
    font-size: 0.9rem;
    margin:5px 0;
  }
 



  input[type="date"]::-webkit-calendar-picker-indicator {
   
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    background-position: 95% 20px;
    background-size:16px;
    
}


.input-type input[type="date"]{
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.5;
}

.input-type input::-ms-input-placeholder { /* Edge 12-18 */
  color:var(--primary-color) !important;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.5;
}
.invalid-small-text{
  font-size: 13px;
}

.input-type input::placeholder {
  color:var(--primary-color)!important;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.5;
}


input.form-control::-ms-input-placeholder { /* Edge 12-18 */
  color:var(--white-color);
  font-weight: 300;
  letter-spacing: 1px;
}

input.form-control::placeholder {
  color:var(--white-color);
  font-weight: 300;
  letter-spacing: 1px;
}



@media (max-width:767px){
  .login-text .heading h2{
    font-size: 1.5rem;
  }
  #login-page .background, #login-page .login {
    width: 100%;
    padding: 20px;
    height: auto;
}
#login-page {
  padding-top: 30px;
  flex-wrap: wrap-reverse;
}
.login-text{
  margin: 0;
    padding-bottom: 160px;
}
.background p{width: 100% !important;}

}