@charset "UTF-8";

.welcome {
}

.welcome .content {
    height: 70vh;
    margin-top: 10vh;
    text-align: center;
}

.form.page .content {
    display: block;
}

form {
    width: 100%;
    margin: 0 auto;
    max-width: 600px;
}

label {
    display: block;
    margin-bottom: .5em;
    font-family: 'Montserrat-Bold';
}

.input span.error label {
    color: rgba(214, 0, 0, 1);
    font-family: 'Montserrat-Regular';
}

.required {
    display: none;
}

form input {
    border: none;
    font-size: 16px;
    padding: 0.75em;
    margin-bottom: 0.5em;
    border-radius: 0.5em;
    color: rgba(0, 0, 0, 1);
    font-family: 'Montserrat-Regular';
    background-color: rgba(0, 0, 0, 0.04);
}

form input.error {
    background-color: rgba(255, 77, 77, 0.33);
}

input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

form #submit.button {
    width: 100%;
    max-width: 100%;
}

.input.check {
    position: relative;
    padding-left: 2.25em;
}

.input.check label {
    font-family: 'Montserrat-Regular';
}

form .fake-checkbox {
    width: 1.5em;
    height: 1.5em;
    top: calc(50% - 10px);
    left: 0;
    position: absolute;
    border-radius: 0.15em;
    transform: translateY(-50%);
}

form .fake-checkbox.checked {
    border-color: #4e3cdb;
    background-color: #4e3cdb;
}

form .fake-checkbox.checked::after {
    content: ' ';
    width: 90%;
    height: 90%;
    margin: 5%;
    background-color: #FFF;
}

form #submit.button {
    margin-top: 5vh;
}

p.fine {
    font-size: .7em;
    margin-top: 2em;
}

#terms {
    display: inline-block;
    text-decoration: underline;
}

#terms_popup {
    width: 90vw;
    height: 90vh;
    text-align: center;
    font-size: 0.75em;
}

.close.button {
    width: 100%;
    margin-top: 2em;
    font-size: 1.25em;
    border-color: rgba(115, 115, 115, 1);
    background-color: rgba(115, 115, 115, 1);
}

.close.button.active {
    background-color: #FFF;
    color: rgba(115, 115, 115, 1);
}