.contactUsForm {
    background-color: rgba(128, 128, 128, 0.3);
    align-items: center;
    border-radius: 35px;
    width: 100%;
    max-height: 50%;
    padding-top: 1rem;
}

.formTitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    color: black;
    text-decoration: underline;
}

.contactUsForm label {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
    width: 80%;
}

.contactUsForm label::after {
    content: '*';
    color: red;
    margin-left: 0.25rem;
    position: absolute;
    top: 0;
}

.contactUsForm input, .contactUsForm textarea {
    border-radius: 35px;
    width: 80%;
    min-height: 2rem;
    padding: 0.5rem;
    resize: vertical;
    border: 1px solid #ccc;
}

.contactUsForm textarea {
    min-height: 12rem;
}

.contactUsForm div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.submitBtn {
    background-color: #ffff00;
    color: #000000;
    padding: 0.35rem 0.75rem;
    border-radius: 35px;
    white-space: nowrap;
    transition: transform 0.3s ease;
    border: solid 0.25px black;
    font-size: 1.3rem;
    cursor: pointer;
}

.submitBtn:hover {
    transform: scale(1.1);
}

.contactFormContainer {
    min-width: 50%;
    display: flex;
    justify-content: center;
    max-height: 50%;
}

@media screen and (max-width: 680px) {
    .contactUsForm {
        padding: 0;
        padding-top: 1rem;
        min-width: 100%;
    }
    .contactFormContainer {
        min-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .formTitle {
        font-size: 1.3rem;
    }
    .contactUsForm label {
        font-size: 1rem;
    }
}
