@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background-color: #F4B73D;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.content {
    text-align: center;
    padding: 0 25px;
}

.content h3 {
    font-size: 32px;
    text-transform: uppercase;
    margin: 0 auto 15px;
    max-width: 750px;
}
.content.v2 > h3,
.content.v3 > h3{
    font-weight: 700;
    font-size: 28px;
    display: block;
    text-align: center;
    letter-spacing: 4px;
    line-height: 1.2em;
    margin-bottom: 8px;
}
.content.v2 > p,
.content.v3 > p{
    font-weight: 400;
    display: block;
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 0;
}

.form input[type=text],
.form input[type=email] {
    outline: none;
    height: auto;
    background: #fff;
    border: none;
    border-radius: 0;
    display: inline-block;
    vertical-align: top;
    color: #5e5d5d;
    box-shadow: none;
    font-family: "Roboto";
    font-size: 20px;
    padding: 19px 24px 15px;
    width: 440px;
    max-width: 100%;
}

.form .form-field {
    display: inline-block;
    position: relative;
    padding: 0;
    margin: 3px 0;
}

.form .field-label {
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    background: none !important;
    padding: 0px 24px;
    color: #dfdfdf;
    width: auto;
    transition: 0.3s ease all;
    top: 0;
}

.form .form-field input::placeholder {
    color: #fff;
    top: 0;
}

.form .form-field input:placeholder-shown~.field-label {
    top: 17px;
    font-family: 'Roboto', sans-serif;
    color: #ABAFB3;
    font-weight: normal;
    font-size: 22px;
    line-height: 26px;
}

.form .form-field input~.field-label,
.form .form-field input:focus~.field-label {
    font-size: 14px;
    top: 3px;
}

.form .submit {
    margin: 3px 5px;
    display: inline-block;
    vertical-align: top;
}

.form .submit input {
    color: #FFFFFF;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    font-weight: 700;
    min-width: 190px;
    padding: 15px 24px;
    margin-bottom: 0;
    background: #1B334E;
    transition: 0.3s ease all;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.form .submit input:hover {
    background: #1B334E;
    color: #FFFFFF;
}

.form .error:not(.form-field) {
    margin: 10px 0;
    text-align: left;
    color: #ff4545;
    display: none !important;
}

.form .errors {
    margin: 0 auto 10px auto;
    max-width: 350px;
    background-color: #b13b3b;
}

@media screen and (max-width: 920px) {
    .content.v3 .form .form-field input {
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
    .content.v3 .form .submit input {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    .content.v3 .form .submit {
        margin: 3px 0;
    }
}
@media screen and (max-width: 768px) {
    .content.v2 > h3,
    .content.v3 > h3,
    .content h3 {
        font-size: 24px;
        margin-bottom: 8px;
        max-width: 550px;
    }

    .form .form-field,
    .form .submit {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    .form .form-field input:placeholder-shown~.field-label{
        font-size: 16px;
        line-height: 20px;
    }

    .form .field-label{
        padding-left: 15px;
        padding-right: 15px;
    }
    .form .form-field input {
        width: 100% !important;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }

    .form .submit {
        margin: 3px 0px;
    }

    .form .submit input {
        font-size: 18px;
        display: block;
        width: 100%;
        margin-right: 0;
    }
}

@media screen and (max-width: 413px){
    .content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .content.v2>h3, 
    .content.v3>h3, 
    .content h3{
        font-size: 22px;
    }
    .content.v2>p, 
    .content.v3>p
    .content>p{
        font-size: 18px;
    }
}
