#contact {
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: #13aae2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.contact {
    width: 75%;
    height: auto;
}

.contact p {
    margin: 5px 0;
    color: white;
    font-size: 15px;
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    color: white;
    /* width: 100%; */

}

.contact form .user {
    margin: 5px 0px;
}

.contact form .user label {
    font-size: 15px;
    display: block;

}

.contact form .user input {
    width: 100%;
    height: 35px;
    padding: 10px;
    border-radius: 5px;
    margin-top: 2px;
    outline: none;
}

small {
    visibility: hidden;
}

.contact form .user textarea {
    border-radius: 5px;
    width: 100%;
    resize: none;
    border: 2px solid black;
    outline: none;
    padding: 10px;
}

.contact button {
    width: 100%;
    height: 35px;
    padding: 5px;
    font-size: 15px;
    background-color: white;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px 0;
    box-shadow: 1px 1px 1px black;
    transition: background-color 0.3s ease;


}


.contact button:hover {
    background-color: #BF2726;
    color: white;
    transition: .3s ease;
    border: 1px solid;
    transform: scale(1.1)
}



.contact button.active {
    background-color: #963d3d;

}

.user.succes input {
    border-color: #2ecc71;

}

.user.error input {
    border-color: #e74c3c;

}

.user.error small {
    color: #e74c3c;
    visibility: visible;
}

.user.succes textarea {
    border-color: #2ecc71;

}



/* Responsive */

@media screen and (max-width: 800px) {

    #contact h1 {
        font-size: 15px;
    }

    .contact p {
        font-size: 12px;
    }

    .contact form .user label {
        font-size: 12px;
    }

    .contact form .user input {
        height: 35px;
    }


}

@media screen and (max-width: 310px) {

    #contact h1 {
        font-size: 12px;
    }

    .contact form {

        width: 200px;

    }

    .contact p {
        font-size: 12px;
    }

    .contact form .user label {
        font-size: 12px;
    }

    .contact form .user input {
        height: 18px;
    }

    .contact form button {
        font-size: 10px;
        height: 25px;
        padding: 5px;
    }

}