@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Lato', sans-serif;
    background-color: #fff;
    color: white;
    font-weight: 400;
}
.center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.d-flex {
    display: flex;
}
.align-items-center {
    align-items: center;
}
.top-container {
    background-color: white;
    padding: 30px 20px;
    border-bottom: 4px solid #d1d6e1;
}
.theme-container {
    max-width: 1000px;
    width: 100%;
    justify-content: space-between;
    margin: 0 auto;
    flex-wrap: wrap;
}
.go-link{padding: 10px;
    border: none;
    background: #dbd1d170;
    border-radius: 8px;
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 14px;}
.logo {
    max-width: 100%;
}
form.form {
  
    width: 100%;
    padding: 40px 40px 60px 40px;
} 
h1 {
    font-family: Oswald;
    font-size: 26px;
    margin-bottom: 40px;
    font-weight: 400;
}
.form label {
    color: #414141; font-size: 14px; font-family: Lato; font-weight: 600; word-wrap: break-word;
}
.form label.error {
    color: red!important;;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    justify-content: space-between;
}
.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 21px;
}
.form input {
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    border: 2px solid #fff;
    width: 100%;
    margin: 0 0 15px 0;
    height: 40px;
    padding: 0 10px;
}
.form .submit {
  cursor: pointer;
    width: 100%;
    height: 50px;
    background: #00D1FF;
    border-radius: 10px;
    text-transform: uppercase;
    color: white;
    font-size: 20px;
    font-family: Lato;
    font-weight: 800;
    word-wrap: break-word;
        margin-top: 15px;
        margin-bottom: 0;
}
.form-para h3 {
   color: black;
    font-size: 24px;
    font-family: Lato;
    font-weight: 600;
    word-wrap: break-word;
  }
  .form-para p {
      text-align: center; color: black; font-size: 16px; font-family: Lato; font-weight: 600; word-wrap: break-word;line-height: 16px;    margin-top: 20px;
  }
  .form-content {
    text-align: center;
    background: #F6F6F6;
    border-radius: 10px;
    padding: 40px;
    padding-top: 15px;
    min-height: 100%;
  }
  .form-para-heading {
    margin-top: 20px;
  }
  .imges-section {
    display: flex;
    justify-content: space-around;
    padding-top: 30px;
    padding-bottom: 90px;
    background-color: white;
  }
  /* .form-main {
    margin-bottom: 30px;
  } */
.custom-select{
    width: 100%;
    height: 40px;
    padding-left: 10px;
    margin-bottom: 20px;
}
input[type="radio"],input[type="checkbox"] {
    height: 19px;
    width: 5%;
  margin-bottom: 0;
  margin-right: 3px;

}
.check-items{
    /*display: flex;*/
    /*align-items: center;*/
}
.custom-check-box{
    margin-bottom: 20px;
    display: none;
}
.check-items label{
    margin-bottom: 0;
    margin-top: 7px;
}
/***code from anik*/
.top-container {
    padding-top: 13px;
    padding-bottom: 9px;
    border-bottom: 1px solid #00D1FF;
}

img.logo {
    height: 118px;
    margin: 0 auto;
}
div#main_content {
    padding-top: 10px;
    max-width: 1390px;
}

.form-group input, .form-group select {
    /* width: 100%; */
    /* height: 50px; */
    /* flex-shrink: 0; */
    width: 100%;
    height: 50px;
    background: #F6F6F6;
    border-radius: 10px;
    border: none;
    margin-top: 8px;
}
footer#footer {
    border-top: 1px solid #00D1FF;
    text-align: center;
    width: 100%;
    /* height: 46px; */
}

footer#footer p {
    color: #00D1FF;
    font-size: 12px;
    font-family: Lato;
    font-weight: 400;
    /* line-height: 28px; */
    word-wrap: break-word;
    line-height: 42px;
}
/*end of code from anik*/

@media (max-width: 768px) {
    .custom-check-box{
        display: block;
    }
    .desk{
        display: none;
}
.theme-container{
    justify-content: center;
}
    form.form {
        padding: 20px 20px 60px 20px;
    } 
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .form-content {
        margin-top: 40px;
        flex: 1;
        max-width: 100%;}
        .form .submit {
          width: 100%;
        }
        
        img.logo {
    height: 80px;
    margin: 0 auto;
}
#selectDiv1 input, #selectDiv input {
    width: unset;   
    height: unset;
}
}


