*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    /* box-sizing: inherit; */
}

:root {
    --background: #F5F5F5;
    --brand-color: #FF6F3C;
    --color: #202020;
    --color-smooth: #606060;
    --color-white: #F5F5F5;
    --blue: #2155CD;
    --blue-50: #2155CD80;
    --blue-hover: #396be2;
    --blue-hover-50: #396be280;
    --item-bg: #EEE;
    --item-border: #D6D6D6;
    --shadow: rgba(0, 0, 0, 0.1);
    --submit-shadow: rgba(33, 85, 205, 0.25);
}

#sign_up_page {
    font-size: 100%;
    box-sizing: border-box;
    /* height: 100vh; */
    overflow: hidden;
}

#sign_up_page p {
    margin-bottom: 10px;
}

#sign_up_page .col-70 {
    width: 60%;
}

#sign_up_page .flex1 {
    flex: 1;
}

.sign-up-section_contents-left nav {
    margin-bottom: 70px;
}

.sign-up-section_contents-left {
    padding: 50px 70px;
    background: rgb(109, 114, 246);
}

.sign-up-section_contents {
    display: flex;
    /* height: 100vh; */
    align-items: stretch;
    min-height: 100vh;
    /* justify-content: center; */
    /* align-items: center; */
    /* background: #f2f2f2; */
}

#sign_up_page .feature-wrapper {
    width: 60%;
    margin-right: auto;
}

.feature-wrapper> :not(:last-child) {
    margin-bottom: 45px;
}

.feature-wrapper .single-feature .single-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
}

#sign_up_page .single-feature-title-icon {
    margin-right: 15px;
}

#sign_up_page .feature-wrapper .single-feature .single-feature-copy {
    font-size: 13.95px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.9;
}

#sign_up_page .signup-count {
    font-weight: 700;
    font-size: 22px;
    color: #ffffff;
    margin-top: 80px 0 80px 0;
}

.feature-imgs> :not(:last-child) {
    margin-right: 20px;
}

.feature-imgs {
    display: flex;
    margin-top: 60px;
}

.feature-imgs-single {
    width: 90px;
    /* border: 1px solid; */
    height: 20px;
}

.sign-up-section_contents-right-inner h4 {
    color: #1d1d1d;
    font-weight: 700;
    font-size: 24px;
}


/* .sign-up-section_contents-right-inner p:last-child {
    text-align: right;
} */

.sign-up-section_contents-right-inner_content p:last-child {
    text-align: inherit !important;
}

.sign-in_section_hr {
    position: relative;
    width: 100%;
    display: block;
    margin-top: 20px;
    text-align: center;
}

.sign-in_section_hr::before {
    content: "";
    position: absolute;
    width: 46%;
    background-color: #dec0c0;
    height: 1px;
    left: 0;
    top: 50%;
}

.sign-in_section_hr::after {
    content: "";
    position: absolute;
    width: 46%;
    background-color: #dec0c0;
    height: 1px;
    right: 0;
    top: 50%;
}

.sign_in-social_buttons {
    display: flex;
    flex-direction: column;
}

.sign_in_right-botom_content {
    text-align: center;
    font-size: 16px;
}

.features_content_bottom h3 {
    color: #ececf6;
}

.sign_in_right-botom_content_text {
    margin-bottom: 0;
}

.features_content_bottom p {
    color: #ececf6;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.feature_img {
    text-align: center;
    width: 60%;
    margin: auto;
}

.page-hero {
    max-height: 100vh;
    max-width: 100vw;
    overflow: hidden;
}

.login-page {
    display: flex;
    justify-content: center;
}

.prewiev-hero {
    width: 50vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: var(--brand-color);
}

.prewiev-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem;
}

.form-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
}

.form-head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}


/* .logo {
    width: 7rem;
    height: 7rem;
    padding: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-color);
    box-shadow: 0px 0px 20px var(--shadow);
} */

.login-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color);
}

.sign_form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .5rem;
    max-width: 400px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

.input-hero {
    width: 100%;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
}

.input-hero input {
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    position: absolute;
    font-weight: 500;
    font-size: 1rem;
    color: var(--color);
    border-radius: .5rem;
    border: 1px solid black;
    background: white;
    padding: .5rem 3rem .5rem 1rem;
    transition: all .25s ease 0s;
}

.input-hero input:focus {
    border-color: var(--blue-50);
    outline: 0;
}

.input-name {
    left: 1rem;
    position: relative;
    display: block;
    /* background: var(--background); */
    z-index: 2;
    transition: all .25s ease 0s;
    top: 0;
    color: var(--color-smooth);
    font-size: 15px;
    background: white;
    padding: 0 4px;
}

.input-hero input:focus+.input-name {
    top: -1.25rem;
    color: var(--blue)
}

.input-hero input:valid+.input-name {
    top: -1.25rem;
}

.input-icon {
    position: relative;
    right: .5rem;
    z-index: 2;
    color: var(--color-smooth);
    transition: all .25s ease 0s;
}

.input-hero input:focus+.input-name+.input-icon {
    color: var(--blue)
}

.input-icon svg {
    vertical-align: middle;
    width: 1.875rem;
    height: 1.875rem;
}

.password-input {
    margin-bottom: 2.25rem;
}

.recovery-password {
    position: absolute;
    bottom: -2.15rem;
    right: 0;
    color: var(--blue)
}

.checkbox-hero {
    width: 100%;
    align-items: flex-start;
    color: var(--color-smooth);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.checkbox-hero input {
    display: none;
}

.checkbox-cover {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    background: var(--item-bg);
    border-radius: .5rem;
    border: .125rem solid var(--item-border);
    transition: all .25s ease 0s;
    cursor: pointer;
}

.checkbox-hero input:checked+.checkbox-cover {
    border-color: var(--blue);
    border-width: .4rem;
}

#sign_up_page .submit-btn {
    width: 100%;
    height: 40px;
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-white);
    border-radius: .5rem;
    transition: all .25s ease 0s;
    box-shadow: inset 1px 1px 3px var(--shadow);
    background: var(--blue);
    border: 1px solid var(--blue-50);
    cursor: pointer;
    box-shadow: 0px 4px 4px var(--submit-shadow);
    transition: all .25s ease 0s;
}

.submit-btn:hover {
    background: var(--blue-hover);
    border: 1px solid black;
}

#sign_form .form-bottom {
    /* position: fixed; */
    bottom: 1rem;
    color: var(--color-smooth);
    font-size: 1rem;
    font-weight: 500;
}

#sign_form .form-bottom a {
    color: var(--blue)
}

@media(min-width:1200px) {
    .sign-up-section_contents-right_parent {
        padding: 50px 70px;
    }
}

@media(max-width:1199px) {
    .sign-up-section_contents-right_parent {
        padding: 50px 25px;
    }
}

@media(max-width:992px) {
    .sign-up-section_contents-right_parent {
        padding: 15px;
    }
}

@media screen and (max-width: 768px) {
    #sign_up_page {
        font-size: 80%;
    }
    .prewiev-hero {
        display: none;
    }
}

@media(max-width:767px) {
    .sign-up-section_contents-left {
        display: none;
    }
}


/* ....btn */

#fourth-btn {
    border: 2px solid #EC971F;
    color: white;
    transition: .40s;
    -webkit-transition: .40s;
    width: 225px;
    height: 50px;
    background-color: rgb(109, 114, 246);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    outline: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
    text-align: center;
    margin: 0;
    min-width: 64px;
    line-height: 36px;
    padding: 0 16px;
    border-radius: 4px;
    overflow: visible;
    transform: translate3d(0, 0, 0);
    transition: background 400ms cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

a#fourth-btn:hover i {
    margin-left: 5px;
    transition: all 50ms ease;
}

#fourth-btn:hover {
    /* background: #EC971F; */
    color: white;
    transition: .40s;
    -webkit-transition: .40s;
}

.ul.thm-breadcrumb.list-unstyled {
    display: flex;
    list-style-type: none;
    justify-content: center;
    gap: 10px;
}


/* ......................current page section.............. */

.bussiness_section {
    align-items: flex-start;
}

.bussiness_section_row {
    align-items: center;
}