@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

.page-content {
    position: relative;
    min-height: calc(100vh - 113px);
    padding-bottom: 110px;
}

body {
    position: relative;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: #707070;
    background-color: #E9EDF4;
    background-image: url("../img/body.svg");
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: -870px;
}

#headline{
    margin-top: 83px;
    margin-bottom: 120px;
}

#content{
    padding-top: 40px;
}

h1{
    color: #774FC4;
    font-size: 40px;
    font-weight: 700;
}

a{
    color: #774FC4;
}


.required {
    margin-bottom: 20px;
    color: #fff;
}

.form-control {
    border-color: #707070;
    background-color: transparent;
    color: #707070;
    height: 40px;
    margin-bottom: 20px;
    border-radius: 40px;
}

.form-control:focus {
    background: transparent;
    color: #707070;
}

.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #707070;
}

.form-control::-moz-placeholder {
    color: #707070;
}

.form-control:-ms-input-placeholder {
    color: #707070;
}

.form-control:-moz-placeholder {
    color: #707070;
}

button.form-control,button.form-control:disabled {
    text-transform: uppercase;
    border: 0;
    background: #774fc4;
    color: #fff;
    max-width: 120px;
    margin: 0 auto;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #fff;
    font-size: 32px;
    line-height: 24px;
    background: #774fc4;
    padding: 10px 0;
    text-transform: uppercase;
}

footer a {
    color: #fff;
}

footer a:hover {
    text-decoration: none;
    color: #fff;
}

footer span {
    font-size: 12px;
}

label.error{
    display: block !important;
    font-size: 12px !important;
    text-align: left;
    margin-top: -15px;
    margin-bottom: 15px;
    color: #774fc4;
}

.loader-wrapper{
    display: none;
    background: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    box-shadow: 0 0 0 3px #cedae1 inset;
    border-radius: 50%;
    position: relative;
    animation: l11 7s infinite;
    left: 50%;
    top: 50%;
    margin-left: -25px;
    margin-top: -25px;
}
.loader:before,
.loader:after {
    content: "";
    position: absolute;
    top: calc(100% + 3px);
    left: calc(50% - 12.5px);
    box-shadow: inherit;
    width: 25px;
    aspect-ratio: 1;
    border-radius: 50%;
    transform-origin: 50% -28px;
    animation: l11 1.5s infinite;
}
.loader:after {
    animation-delay: -0.75s;
}
@keyframes l11 {
    100% {
        transform: rotate(360deg);
    }
}

.close{
    float: right;
}

#thx{
    display: none;
}

.border{
    border-color: #707070 !important;
}
