/* #region: Section 2 */
    .supports .section-2 .form {
        margin: auto;
        width: 85%;
    }
    .supports .section-2 .label {
        font-size: 16px;
        font-weight: 500;
        color: var(--color-bg-dark-alt);
        margin-bottom: 10px!important;
    }
    .supports .section-2 .input-field {
        border: 1px solid var(--color-gray-light);
        border-radius: 0;
        height: 50px;
        font-size: 14px;
        color: var(--color-bg-dark-alt);
    }
    .supports .section-2 .submit-button {
        background-color: var(--color-primary);
        width: 100%;
        border-radius: 0;
        border: none;
        padding: 15px 0;
        font-size: 18px;
        font-weight: 500;
        color: var(--color-white);
        transition: all 0.3s;
        &:hover {
            background-color: var(--color-primary-dark);
            transition: all 0.3s;
        }
    }
/* #endregion */


/* #region: Responsive */
    @media (width < 991px) {
        .supports .section-2 .form {
            width: 100%;
        }
    }
    @media (width < 768px) {
        .supports .section-2 .label {
            font-size: 15px;
            margin-bottom: 5px!important;
        }
        .supports .section-2 .input-field {
            height: 45px;
        }
    }
    @media (width < 429px) {
        .supports .section-2 .label {
            font-size: 14px;
        }
        .supports .section-2 .submit-button {
            padding: 10px 0;
            font-size: 17px;
        }
    }
/* #endregion */