/* === Contact us section === */

main {
    padding: 120px 20vw;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.section-title {
    text-align: center;
}

.form-container {
    border-radius: 15px;
    background-color: #FAFAFA;
    filter: drop-shadow(0 0 0.2rem rgba(0, 0, 0, 0.25));
    padding: 25px;
    width: 100%;
}

.form-container * {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxyg1en, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

input,
textarea,
select,
button {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    background-color: transparent;
    margin-bottom: 10px;
}

textarea {
    resize: vertical;
    min-height: 50px;
}

label {
    margin-left: 11px;
}

.submit {
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.submit:hover {
    color: white;
    background-color: var(--brand);
    transition: all .2s ease-in-out;
}

.required {
    color: red;
}

.full-width-input {
    display: block;
    width: 100%;
}

.half-width-input-container {
    display: flex;
    gap: 10px;
}

.half-width-input-container .input-group {
    flex: 1;
}


.half-width-input-container .input-group input {
    width: 100%;
}

/* === Design breakpoints === */

/* Mobile */
@media screen and (max-width: 640px) {
    .half-width-input-container {
        flex-direction: column;
    }

    main {
        padding: 120px 5vw;
    }
}

/* Tablet */
@media screen and (min-width: 641px) and (max-width: 1007px) {
    .half-width-input-container {
        flex-direction: column;
    }

    main {
        padding: 120px 10vw;
    }
}

/* Laptop */
@media screen and (min-width: 1008px) {
}