.status-message {
    background: rgba(245, 244, 243, 0.1);
    border-bottom: 0.5px solid #9C824F;
    border-radius: 5px 5px 0px 0px;
    color: #9C824F;
    font-family: 'Luxia Display';
    font-size: 16px;
    height: 100%;
    left: 50%;
    max-width: 100%;
    padding: 0 15px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 3;
}

.status-message .sending, .status-message .success, .status-message .error {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.sending-icon {
    background: url('../images/sending.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 30px;
    margin: 0 auto 5px;
    width: 30px;
}

.success-icon {
    background: url('../images/succes.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 30px;
    margin: 0 auto 5px;
    width: 30px;
}

.status-message .message {
    max-width: 379px;
    width: 100%;
}

.hidden {
    display: none;
}

.contact-form {
    position: relative;
}

.wrapper-content-form {
    opacity: 1;
}

.wrapper-content-form.partial-hide {
    opacity: 0;
    pointer-events: none;
}

.input-container {
    margin-top: 25px;
}

.input-container:first-child, .input-container:nth-child(2) {
    margin-top: 0;
}

input[type=text], input[type=email] {
    background: rgba(245, 244, 243, 0.1);
    border: none;
    border-bottom: 0.5px solid #9C824F;
    border-radius: 5px 5px 0px 0px;
    color: #E0DDD8;
    display: block;
    font-family: "Twklausanne 100", Arial, sans-serif;
    font-size: 16px;
    line-height: 18px;
    max-width: 100%;
    outline: none;
    padding: 15px 15px 17px;
    width: 100%;
}

.input-container label {
    color: #E0DDD8;
    display: block;
    font-family: "Twklausanne 300", Arial, sans-serif;
    font-size: 10px;
    line-height: 150%;
    margin-top: 6px;
    text-transform: uppercase;
    transition: all 550ms ease-in-out;
}

.input-container.invalid label {
    color: #9C824F;
}

.submit-container {
    margin-left: auto;
    margin-top: 20px;
    position: relative;
    width: fit-content;
}

input[type=submit] {
    background: transparent;
    border: 1px solid #9C824F;
    border-radius: 20px;
    color: #9C824F;
    cursor: pointer;
    display: block;
    font-family: "Twklausanne 300", Arial, sans-serif;
    font-size: 12px;
    line-height: 14px;
    padding: 10px 45px 11px 30px;
    text-transform: uppercase;
    transition: all 550ms ease-in-out;
}

.submit-container:after {
    background: url('../images/arrow1.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    height: 8px;
    pointer-events: none;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 550ms ease-in-out;
    width: 10px;
}

input[type=submit]:hover {
    background: #9C824F;
    color: #282A32;
}

.submit-container:hover:after {
    background: url('../images/arrow2.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}