.contact-section {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.contact-section-body {
    background-image: url(../assets/img/Background-secondary.png);
    width: 96vw;
    border-radius: 8px;
    height: 82vh;
    max-width: 1440px;
    max-height: 1920px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
}

.contact-form-card {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: white;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 420px;
    width: auto;
    gap: 8px;
}

textarea {
    max-width: 400px;
    max-height: 256px;
    width: 400px;
    height: 256px;
    resize: none;
    font-family: 'Figtree-Regular';
    font-size: 16px;
}

@media(max-width:500px) {
    textarea {
        max-width: clamp(260px, calc(232px + 8.75vw), 400px);
        max-height: 256px;
        width: clamp(260px, calc(232px + 8.75vw), 400px);
        height: 256px;
    }
}

.send-button {
    max-width: 200px;
    width: 24vh;
    height: auto;
}

.send-button:hover {
    cursor: pointer;
}

.textbox-mail-sent {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 18px;
    color: white;
}

.header {
    font-size: 24px !important;
}

.body-textbox {
    display: flex;
    flex-direction: column;
    gap: 4px;
}