/**
 * General
 */

.content {
    padding: 0 20px;
}

/**
 * Small disclaimer
 */

.contact-disclaimer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: 'Open Sans';
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #283136;
    margin-bottom: 40px;
}

.contact-disclaimer img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.contact-disclaimer p {
    margin-bottom: 5px;
}

/**
 * Contact title
 */

.contact-title {
    font-family: 'Open Sans';
    font-size: 24px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #324b59;
    margin-bottom: 50px;
    text-align: center;
}

/**
 * Form
 */

.form-container {
    max-width: 850px;
    width: 100%;
    margin: 0 auto 70px auto;
}

.small-form-container {
    max-width: 400px;
    width: 100%;
    margin: 0 auto 160px auto;
}

.input-title {
    font-family: 'Noto Serif';
    font-size: 20px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #324b59;
    text-align: left;
    width: 100%;
}

.input-txt-big {
    width: 100%;
    height: 250px;
    margin: 0 auto 20px auto;
    border-top: 1px solid #324b59;
    border-left: 1px solid #324b59;
    border-right: 1px solid #324b59;
    border-bottom: 5px solid #324b59;
    padding: 5px;
}

.input-txt-small {
    width: 100%;
    height: 50px;
    margin: 0 auto 20px auto;
    padding-left: 0px;
    border-top: 0px solid #324b59;
    border-left: 0px solid #324b59;
    border-right: 0px solid #324b59;
    border-bottom: 1px solid #324b59;
}

.invalid {
    border-top: 0px solid red;
    border-left: 0px solid red;
    border-right: 0px solid red;
    border-bottom: 1px solid red;
}

.invalid-big {
    border-top: 1px solid red;
    border-left: 1px solid red;
    border-right: 1px solid red;
    border-bottom: 5px solid red;
}

.small-form-container .submit {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.small-form-container .submit button {
    width: 100%;
    max-width: 240px;
}

.small-form-container .successmsg,
.small-form-container .errormsg {
    padding-top: 10px;
}

.small-form-container .successmsg p {
    color: green;
    margin-bottom: 0;
    text-align: center;
}

.small-form-container .errormsg p {
    color: red;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 400px) {
    .form-container, .small-form-container {
        margin-bottom: 40px;
    }

    .small-form-container .submit {
        margin-top: 20px;
    }
}