.form_layout {
    background: #fff;
    overflow: hidden;
}

.form_layout_fcolumn {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.form_layout_fcolumn::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #E76436;
    z-index: 2;
    filter: blur(100px);
    opacity: 0.3;
}

.form_banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    height: 100%;
    align-items: center;
    padding: 100px;
    background-color: #000;
}

.form_banner-inner {
    position: relative;
    z-index: 9;
}

.form_banner-img {
    max-width: 100%;
}

.form_banner-title {
    color: #fff;
    margin-bottom: 10px;
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
}

.form_banner-text {
    color: #fff;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
}

.form_area {
    display: flex;
    flex-direction: column;
    padding: 50px 150px;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.form_inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.form_inner .logo img {
    width: 200px;
}

.form_heading {
    margin-bottom: 40px;
}

.form_title {
    font-size: 36px;
    color: #101010;
    margin: 0 0 5px;
    font-weight: 700;
}

.form_text {
    color: #515E65;
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
}

.forms label {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #101010;
}

.forms .form-control {
    min-height: 55px;
    padding: 5px 15px 5px 15px;
    background: none !important;
    border: 1px solid #DCDFE6;
    color: #4B5563 !important;
    border-radius: 8px;
    transition: all 0.4s ease;
    font-size: 14px;
    box-shadow: none !important;
}

.forms_icon {
    position: absolute;
    top: 58px;
    right: 15px;
    transform: translateY(-50%);
    color: #4B5563;
    cursor: pointer;
}

.reset_forms_icon {
    position: absolute;
    top: 560px;
    right: 240px;
    transform: translateY(-50%);
    color: #4B5563;
    cursor: pointer;
}

.forms .form-group {
    margin-bottom: 20px;
    position: relative;
}


.formify-forms__text {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    color: #000;
}

.formify-forms__text a,
.forms_forgot a,
.btn-link {
    color: #E76436;
    text-decoration: none !important;
}


@media only screen and (min-width: 992px) and (max-width: 1600px) {

    .form_title {
        font-size: 30px;
    }

    .form_area {
        padding: 50px 0;
    }

    .form_inner {
        gap: 25px;
        padding: 0 50px;
    }

    .form_banner {
        padding: 30px;
    }

    .form_banner-img img {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .form_banner {
        padding: 20px;
    }

    .form_area {
        padding: 20px;
    }

    .form_banner-img img {
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }
}

