body {
    background-image: url('/assets/img/v2021/signup-background.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
    background-color: #1c2943;
}

a, a:visited {
    color: #a6967b;
}

h3 {
    margin-bottom: 30px;
    font-size: 41px;
    color: #a6967b;
}

input,select {
    display: block;
    color: #a6967b !important;
    background-color: #fff;
    height: 50px;
    border-radius: 25px;
    padding: 0px 20px 0px 40px;
    border: 1px #a6967c solid;
    -webkit-box-shadow: inset 0px 5px 11px 0px rgb(0 0 0 / 30%);
    box-shadow: inset 0px 5px 11px 0px rgb(0 0 0 / 30%);
    width: 100%;
    margin: 0 auto;
    margin-bottom: 14px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

button {
    background-color: #a6967b;
    color: #fff;
    border: 0px;
    height: 50px;
    border-radius: 25px;
    padding: 0px 40px 0px 40px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(166,150,123,0.82); 
    box-shadow: 0px 5px 10px 0px rgba(166,150,123,0.82);
    cursor: pointer;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: normal;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #a6967c;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #a6967c;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #a6967c;
}

#main-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#center-wrapper {
    max-width: 530px;
    display: inline-block;
    background-color: #243660;
    border-radius: 40px;
    padding: 80px 100px;
    -webkit-box-shadow: 5px 5px 20px 5px rgba(0,0,0,0.5); 
    box-shadow: 5px 5px 20px 5px rgba(0,0,0,0.5);
    width: 100%;
}

#center-wrapper > form {
    margin: 0 auto;
    display: block;
    width: 100%;
    color: #fff;
    width: 98%;
}

#notificationErrBlock {
    display: none;
    background-color: #f5e1e1;
    width: 100%;
    margin-top: 30px;
    height: 50px;
    border-radius: 25px;
    padding: 0px 20px 0px 40px;
    line-height: 50px;
    font-size: 14px;
    color: black;
}

.akIsErr {
    background-color: #f5e1e1;
}

.form-description {
    color: white;
    padding: 0;
    margin: 0;
    padding-bottom: 30px;
    margin-top: 30px;
}

@media only screen and (max-width: 600px) {
    body {
        width: 100%;
    }
    
    #main-wrapper {
        height: auto;
    }
    
    #center-wrapper {
        padding: 30px 30px;
        margin-top: 10px;
    }
}