/*
*
* @Copyright 2023 VOID SOFTWARE, S.A.
*
*/

.contact-us-container {
    display: flex;
    flex-direction: column;
    padding: 150px 20px 20px 20px;
    gap: 50px;
}

.contact-us-container h1 {
    color: #FFF;
    font-family: Nunito;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 52px;
    text-transform: uppercase;
}

.contact-us-form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
}

.form-input {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    color: #FFF;
    font-family: Nunito Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-input > input, .form-input > textarea {
    width: 100%;
    padding: 5px 0 5px 0;
    color: #b1b1b1;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}

.form-input > textarea {
    min-height: 140px;
    max-width: 100%;
    white-space: pre-wrap;
    font-family: inherit;
}

.form-input input:focus, .form-input textarea:focus {
    outline: none;
}

.send-request-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 50px;
    width: 100%;
    border-radius: 99px;
    background: #39B54A;
    color: #fff;
    text-align: center;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.send-request-button.disable {
    pointer-events: none;
    opacity: 0.6;
}

/* For Desktop */
@media only screen and (min-width: 760px) {
    .contact-us-container {
        padding: 220px 125px 20px 125px;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: unset;
    }

    .contact-us-container > * {
        width: 40%;
    }

    .contact-us-container h1 {
        font-size: 64px;
        line-height: 72px;
        text-transform: unset;
    }

    .send-request-button {
        align-self: flex-end;
        height: 50px;
        width: unset;
        padding: 0 50px;
    }
}
