body {
    font-family: Arial, sans-serif;
    background-color: rgb(212, 185, 245); 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.contact-form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    width: 500px;
    height: 500px;

}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}    

.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.buttons .submit-btn {
    background-color: #96e099; 
    color: white;
}

.buttons .submit-btn:hover {
    background-color: #45a049;
}

.buttons .reset-btn {
    background-color: #d87069; 
    color: white;
}

.buttons .reset-btn:hover {
    background-color: #da190b;
}