.support-section {
    background-image: url('../img/support-bg.png');
    background-size: cover;
    background-position: center;    
}

.form-container {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 62px;
    border-radius: 24px;
    max-width: 600px; /* Adjust the maximum width as needed */
    margin: auto; /* Center the form container */
}

.form-control {
    width: 100%; /* Make the fields take up the full width of the form container */
    height: 55px; /* Adjust the height of the input fields */
    border-radius: 12px;
    padding: 25px;
}

.form-control::placeholder {
    color: #98A2B3; 
}

.form-control#message {
    height: 160px; /* Let the height of the textarea adjust based on its content */
    resize: none;   
}

.custom-button {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    border: none;
    margin-right: 8px;
    background-color: #3D9FBA; /* Primary color */
    color: #fff; /* Text color */
    font-size: 20px; /* Font size */
    font-weight: 500;
    cursor: pointer; /* Cursor style */
    outline: none; /* Remove outline */
}
.custom-button:hover {
    background-color: #2c7a95; /* Change color on hover */
}