*{
    box-sizing: border-box;
}
*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
body {
    margin: 0;
    font-family: Open Sans,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #454545;
    text-align: left;
    background-color:#f9fafc;
}
img {
    max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
    color: #ffffff;
}

ul,
ol {
    padding: 0;
    margin: 0;
}
li{
    list-style:none;
}
hr{
    max-width: 80%;
}
.top-nav{
    width: 100%;
    height:70px;
    display: flex;
    align-items: center;
    padding:0px 20px;
}
.nav-brand img{
    width: 250px;
    height: 100%;
    object-fit: contain;
}

/*.form-section*/
.form-section{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:30px;
    padding-top:70px;
}
.form-container{
    width:400px;
    background-color:#ffffff;
    padding:10px 30px;
    border-radius: 10px;
    -webkit-box-shadow:6px 11px 41px -28px #a99de7;
     box-shadow: 6px 11px 41px -28px #a99de7;

}
@media screen and (max-width:433px){
    .form-section{
        padding:10px !important;
        padding-top: 70px !important;
    }
    .form-container{
    width:100% !important;
    padding:10px 10px !important;
    border-radius: 10px;
}
}
.form-header{
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.form-header .animated-ball{
   display: inline-flex;
    width: 50px;
    height: 2px;
    background: linear-gradient(109deg,#8c8fe5,#8dc9f3);
    margin-bottom: 10px;
    margin-top: 10px;
}
.form-header h3{
    margin: 0;
    padding: 0;
    font-size: 2em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
@media screen and (max-width:400px){
 .form-header h3{
    margin: 0;
    padding: 0;
    font-size: 1.5em !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
}
.site-form{
    width: 100%;
    margin-top: 30px;
    margin-bottom: 10px;
}
.form-input{
    width: 100%;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}
.form-input input{
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    background-color: transparent;
    border:none;
    border:1px solid #e1e7f0;
}
.form-input input::placeholder{
    color: #454545;
}
.form-input input:focus{
    border:1px solid #8c8fe5;
}
.form-input input:focus::-webkit-input-placeholder {
    color: #8c8fe5;
}
.form-input input[type="submit"]{
    background: linear-gradient(109deg,#8c8fe5,#8dc9f3);
    border:1px solid transparent;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffff;
}
.form-input input[type="submit"]:hover{
    transition: all 0.2s ease; 
     background: linear-gradient(109deg,#787ae0,#5bb4ee);
    border: 1px solid  transparent;
}
/*form-footer*/
.form-footer{
    width: 100%;
    height: auto;
    padding:10px;
}
.form-footer p{
    margin: 0;
    padding: 0;
}
.form-footer p a{
    color:#8c8fe5;
}
.form-footer p span{
    margin-right: 10px;
    margin-left: 10px;
}

.form-terms{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 10px 0px;
   
}
.form-terms p{
    margin: 0;
    padding: 0;
    display: flex;
     text-align: center;
     align-items: center;
}
.form-terms input[type="checkbox"] {
    margin: 0px 5px;
    vertical-align: middle;
}
.form-terms p a{
    color: #8c8fe5;
}