.contact-form{
    background-color: white;
    border-radius: 20px;
}

.contact-form h3{
    color: #2b3f61;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-form label{
    color: #1a2337;
}

.contact-form input, .contact-form textarea , .contact-form select{
    border: none;
    border-radius: 10px;
    background-color: #f6f6f8;
}

.contact-form button{
    background-color: #30368F;
    color: white;
    border-radius: 10px;
    border: none;
    padding: 10px 20px;
    display: block;
    margin: auto;
    margin-top: 15px;
    width: 30%;
    font-size: 18px;
    font-weight: 600;
}

.contact-form button:hover{
    background-color: white;
    color: #30368F;
    border: 2px solid #30368F;
}