#contact{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 5vh 5vw 5vh 5vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #1a1a1a;
    border-radius: 25px;
}
#form{
    width: 70%;
}

#form h1{
    text-align: center;
    margin-bottom: 1vh;
}

.fail-message{
    background-color: var(--red);
    text-align: center;
    padding: 1vh 0 1vh 0;
}

.success-message{
    background-color: var(--blue-branding);
    text-align: center;
    padding: 1vh 0 1vh 0;
}

.select{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}

svg.contact-symbol{
    fill: #1a1a1a;
     width: 6%;
    margin-left: 10px;
}

input, textarea{
    background-color: #e9e9e9;
    border: hidden;
    font-family: manrope_light;
    border-radius: 5px;
    width: 100%;
    margin: 1vh 0 1vh 0;
}

input.character-input, textarea, select{
    padding-left: 10px;
}

select{
    background-color: #e9e9e9;
    border: hidden;
    font-family: manrope_reg;
    border-radius: 5px;
    width: 80%;
    height: 5vh;
    margin: 1vh 0 1vh 0;
}

textarea{
    resize: none;
    height: 13vh;
    padding-top: 10px;
}


label{
    width: 100%;
}

input{
    height: 5vh;
}

.send-button{
    width: 30%;
    background-color: var(--blue-branding);
    font-family: manrope_reg;
    transition: 0.4s;
    margin: 0;
    color: var(--white);
}

.send-button:hover{
    background-color: var(--dark-blue);
    cursor: pointer;
}


form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.detail{
    margin: 6vh 0 6vh 10%;
    height: 5vh;
    width: 90%;
    background-color: var(--blue-branding);
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.detail p{
    margin-left: 5%;
}

.g-recaptcha{
transform:scale(0.80);
-webkit-transform:scale(0.80);
transform-origin:0 0;
-webkit-transform-origin:0 0;
display: block;
}

#recaptcha-button{
    width: 100%;
    margin-top: 1vh;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width:800px){
    #contact{
        flex-direction: column;
    }

    #form{
        width: 100%;
    }
    
    select{
        width: 100%;
    }
    .send-button{
        width: 40%;
    }

    #contact-details{
        width: 100%;
    }

    .detail{
        width: 100%;
        margin-left: 0;
    }
}

@media screen and (max-width:330px){
    .g-recaptcha{
    transform:scale(0.70);
    -webkit-transform:scale(0.70);
}
}