body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eff2f5;
}

.form{
    width: 80%;
    max-width: 530px;
    /* border: 1px solid #959595; */
    box-shadow: 0 0 46px rgba(187, 188, 187, 0.33);
    background: #fff;
}
.title{
    text-transform: uppercase;
    text-align: center;
    font-size: 30px;
    color: #3A7B90;
}
.form-row{
    text-align: center;
}
.form-row:nth-child(n+2) {
    margin-top: 31px;
}

.form-hint {
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
  }

.field {
    box-sizing: border-box;
    width: 80%;
    max-width: 476px;
    border: 1px solid #3A7B90;
    padding: 15px 20px;
    font-family: inherit;
    text-align: center;
    font-size: 23px;
    outline: none;
}
input:-webkit-autofill, input:-webkit-autofill:focus, input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0px 1000px #fdfdfd inset;
}

.button {
    border: none;
    width: 80%;
    max-width: 476px;
    padding: 15px 55px;
    color: #ffffff;
    background-color: #3A7B90;
    font-family: inherit;
    font-size: 23px;
    cursor: pointer;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.14), 0 2px 0px -3px rgba(0,0,0,0.12), 0 0px 4px 0 rgba(0,0,0,0.2);
}
.button:hover {
    background-color: #1e6f89;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}
.checkbox-text{
    font-size: 17px;
    color: #3A7B90;
    cursor: pointer;
}

input[type=checkbox] {
    border: 1px solid #b4b9be;
    background: #fbfbfb;
    cursor: pointer;
    line-height: 0;
    height: 20px;
    margin: -4px 4px 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: middle;
    width: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
    transition: .05s border-color ease-in-out;
}

input[type=checkbox]:checked:before {
    position: absolute;
    content: "\2714";
    font-size: 16px;
    font-weight: bold;
    margin: 10px 3px;
    color: #3a7b90;
}
.left-form{
    text-align: left; 
    margin-left: 30px;
    margin-bottom: 55px;
}
@media(max-width: 530px){
    .field{
        font-size: 16px;
    } 
}

#loader {
    display: none;
    flex-direction: column;
    align-items: center;
}

#loader.show {
	display: flex;
	background: #ffffffab;
}

#loader > img {
    width: 150px;
}
