.container {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

.form-contact {
    display: flex;
    flex-direction: column;
    width: 50vw;
}

.label-contact{
    font-size: 15px;
    font-weight: bold;
}

.input-contact {
    padding: 5px;
    border-radius: 10px;
    background-color: rgb(240, 240, 240);
    border-color: rgb(161, 161, 161);
    margin-bottom: 10px;
    height: 40px;
}

.submit-contact {
    background-color: rgb(92, 255, 47);
    color:darkslategrey;
    padding: 10px;
    width: 100px;
    border-radius: 10px;
    border: none;
}

textarea.input-contact{
    resize: none;
    height: 200px;
}
