.contact-form{
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: auto;
}
.contact-form fieldset{
    border: none;
    margin-bottom: 15px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-form label{
    margin-bottom: 5px;
    font-weight: bold;
}
.contact-form input,.contact-form textarea{
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.contact-form button{
    padding: 10px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}