body {
    font-family: "Montserrat", serif;
}

.form_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#contactForm {
    border:1px solid green;
    min-width: 500px;
    max-width: 100%;
    padding:25px;
    border-radius:10px;
}

.form_content label span {
    color:red;
}

#contactForm
input[type=text],
input[type=email] {
    width:95%;
    height: 20px;
    padding:10px;
    border:1px solid #d3d3d3;
    border-radius:5px;
    margin-top: 5px;
    margin-bottom: 20px;
}

.iti {
    width: 100%;
    margin-top: 5px !important;
    margin-bottom: 20px !important;
}

.iti input {
    width: 100%;
    height: 42px;
    padding:10px;
    border:1px solid #d3d3d3;
    border-radius:5px;
    
    
}

#contactForm button {
    margin-top: 20px;
    width: 100%;
    height: 50px;
    background-color: green;
    cursor: pointer;
    text-transform: uppercase;
    color:white;
    border:1px solid green;
    border-radius: 5px;
}

#contactForm a {
    color: black;
}

@media (min-width: 320px) and (max-width: 480px) {
    #contactForm {
        min-width: 85%;
    }
}