/* contactForm */

.contactFormContainer {
    width: 50vw;
    height: auto;

    margin-top: 40px;
    margin-bottom: 40px;
    padding: 40px 0;

    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;

    z-index: -2;

    background-color: rgba(0, 0, 0, 0.1);
}

.contactFormContainer h1 {
    margin-bottom: 15px;
}

.formBox {
    width: 60%;
    text-align: center;
}

.input, .textinput{
    padding: 5px;
    margin: 5px;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    border: none;
    border-bottom: 1px solid black;
    resize: none;
    font-size: 14px;
}

.input:focus, .textinput:focus {
    outline: none;
}

.textinput {
    height: 150px;
}

.button-52 {

    margin-top: 20px;
    margin-bottom: 20px;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 13px 20px 13px;
    outline: 0;
    border: 1px solid black;
    cursor: pointer;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
  
.button-52:after {
    content: "";
    background-color: white;
    width: 100%;
    position: absolute;
    height: 100%;
    top: 7px;
    left: 7px;
    transition: 0.2s;
    z-index: -1;
}

.button-52:hover:after {
    top: 0px;
    left: 0px;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid black;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    } 

.msg-policy {
    color: grey;
    font-size: 12px;
    margin-left: 20px;
    margin-right: 20px;
}

.msg-policy a{
    color: grey;
    text-decoration: underline;
}

.msg-status {
    margin-top: 15px;
}

@media screen and (max-width: 768px) {

    .contactFormContainer {
        width: 100vw;
    }

}