
#main-01 {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    background-color: #f4f4f9;
    font-family: 'Arial', sans-serif;
}

.contact-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    /* padding: 10px; */
}

.contact-form {
    width: 100%;
    min-width: 400px;
    background-color: #E0E0E0;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    color: #101720;

    h1 {
        margin-bottom: 20px;
        text-align: center;
    }
}

.contact-form label {
    display: block;
    /* color: #555; */
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    color: #333;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 10px;
    font-size: 1.1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #5cb85c;
    outline: none;
    box-shadow: 0 0 5px rgba(160, 195, 210, 0.5);
}

.contact-form .submit-button {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #5cb85c;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form .submit-button:hover {
    background-color: #4cae4c;
}