section:has(.send-request-container) {
    background: var(--lazure-green);
}

.send-request-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding-bottom: 80px;
}

.send-request-header {
    padding: 80px 16px 0;
    display: flex;
    flex-direction: column;
}

.send-request-header h2 {
    color: var(--white);
    text-align: center;
    font-family: 'Gilroy', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.send-request-header span {
    color: var(--white);
    text-align: center;
    font-family: 'Gilroy', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 16px;
    margin-bottom: 60px;
}

.send-request-header-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.send-request-header-step {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.send-request-header-icon {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.send-request-header-icon__number {
    display: flex;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: flex-end;
    border-radius: 999px;
    background: var(--dark);

    & div {
        margin-top: 2px;
        color: var(--white);
        text-align: center;
        font-family: 'Gilroy', sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
    }
}

.send-request-header-icon__line {
    width: 1px;
    height: 64px;
    background: var(--white);
    align-self: center;
}

.send-request-header-step:nth-child(3) .send-request-header-icon__line {
    display: none;
}

.send-request-header-step__description {
    color: var(--white);
    font-family: 'Gilroy', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.send-request-form {
    padding: 40px 16px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.send-request-form-content {
    display: flex;
    flex-direction: column;
    gap: 26px;
    width: 100%;
}

.send-request-form-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.send-request-form-field label {
    color: var(--gray);
    font-family: 'Gilroy', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


.send-request-form-field input, .send-request-form-field textarea {
    display: flex;
    padding: 12px 16px;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--light-gray);
    background: transparent;
    outline: none;
    font-family: 'Gilroy', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* Hide browser default validation bubbles */
.send-request-form-field input:invalid,
.send-request-form-field textarea:invalid {
    box-shadow: none;
}

.send-request-form-field input:invalid:not(:focus):not(:placeholder-shown),
.send-request-form-field textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-bottom-color: #dc3545;
}

.send-request-form-error {
    display: none;
    color: #dc3545;
    font-size: 14px;
    margin-top: 4px;
    line-height: 1.4;
    font-family: 'Gilroy', sans-serif;
}

.send-request-form-error.show {
    display: block;
}

.send-request-form-field input:focus,
.send-request-form-field input:focus-within,
.send-request-form-field textarea:focus,
.send-request-form-field textarea:focus-within {
    outline: none;
    box-shadow: none;
}

.send-request-form-field input::placeholder, .send-request-form-field textarea::placeholder {
    color: var(--light-gray);
    font-family: 'Gilroy', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.send-request-submit-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    height: min-content;
    margin-top: 14px;
}

.send-request-form-alternative {
    color: #000;
    text-align: center;
    font-family: 'Gilroy', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.send-request-form-email {
    color: var(--lazure-green);
    text-decoration: none;
}

.send-request-form-email:hover {
    text-decoration: underline;
}

.send-request-form-privacy {
    color: var(--privacy-gray);
    text-align: center;
    font-family: 'Gilroy', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media (min-width: 768px) {
    .send-request-header h2 {
        font-size: 40px;
    }

    .send-request-header span {
        font-size: 18px;
    }

    .send-request-header-steps {
        width: 472px;
    }

    .send-request-container {
        padding: 0 16px 80px;
    }

    .send-request-form {
        padding: 40px;
    }

    .send-request-submit-wrapper {
        flex-direction: row;
        gap: 24px;
    }

    .send-request-form-alternative, .send-request-form-privacy {
        text-align: start;
    }
}

@media (min-width: 992px) {
    .send-request-container {
        padding: 0 195px 80px;
    }
}

@media (min-width: 1200px) {
    .send-request-container {
        display: flex;
        flex-direction: row;
        padding: 80px 120px;
        align-items: stretch;
    }

    .send-request-header {
        padding: 0;
    }

    .send-request-header h2 {
        font-size: 56px;
        max-width: 500px;
        text-align: start;
    }

    .send-request-header span {
        text-align: start;
    }

    .send-request-submit-wrapper {
        min-width: 462px;
    }

    .send-request-header-steps {
        width: auto;
        min-width: 350px;
        margin-top: auto;
        margin-bottom: auto;
    }

    .send-request-form {
        min-height: 100%;
        justify-content: space-between;
    }
}

