body {
    overflow-x: hidden;
}

#signup-form-container {
    display: flex;
    align-items: center;
}

.primary-font {
    font-family: var(--primary-font) !important;
}


#left-primary-con-card {
    width: 60% !important;
    height: 100vh;
    background-color: var(--primary-color) ;
}

.left-content {
    position: absolute !important;
    bottom: 100px !important;
    left: 50px;
    width: 450px;
}

.left-content h4 {
    font-size: 55px !important;
    font-family: var(--primary-font) !important;
    font-weight: 600;
}

.left-content p {
    font-family: var(--primary-font) !important;
    font-weight: 500;
}


#right-form-content {
    height: 100vh;
    width: 40% !important;
}

.signup-arrow {
    background-color: white;
    width: 120px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-mode-card-1,
.user-mode-card-2 {
    width: 350px !important;
    margin: 20px auto !important;
}

.user-mode-card-1::after {
    content: "Pro";
    position: absolute;
    font-weight: 600;
    font-family: var(--primary-font) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    bottom: 0;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border-radius: 0 0 15px 15px;
    z-index: 1;
}

.user-mode-card-2::after {
    content: "Client";
    position: absolute;
    font-weight: 600;
    font-family: var(--primary-font) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    bottom: 0;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.61) !important;
    backdrop-filter: blur(5px);
    border-radius: 0 0 15px 15px;
    z-index: 1;
}

.form-title {
    font-family: var(--primary-font);
    font-size: 25px !important;
    font-weight: 600;
    color: rgb(36, 36, 36);
}

.form-subtitle {
    font-family: var(--primary-font);
    font-size: 18px !important;
    color: var(--secondary-color) !important;
    font-weight: 500;
}

.form-section {
    width: 450px;
}

.form-control {
    padding: 12px 18px !important;
    border-radius: 50px !important;
    background-color: #F8F8F8 !important;
    border: 1px solid #DADADA !important;
    margin-top: 10px;
}

.form-control:focus {
    box-shadow: 0 0 0 2px var(--primary-color) !important;
}

.form-label {
    font-family: var(--primary-font);
    color: #383838;
    font-size: 16px;
    font-weight: 500;
}

.go-back {
    font-family: var(--primary-font);
    color: #383838 !important;
    font-weight: 600;
}


.plan-card {
    border: 2px solid white;
    box-shadow: 3px 3px 0 2px white;
    border-radius: 14px;
    width: 261px !important;
    /* position: relative; */
    z-index: 100 !important;
}

.plan-card h2, .plan-card p {
    font-family: var(--primary-font);
}

.change-plan-type {
    background-color: white;
    border-radius: 50px;
    width: fit-content;
    display: flex;
}

.change-plan-type .active{
    background-color: var(--primary-color);
    color: white;
}

.change-plan-type p {
    font-family: var(--primary-font);
    font-weight: 600;
}

.save-annn-tag{
    box-shadow: 1px 1px 0 3px white !important;
    margin-top: 10px;
}

.signup_pro_back, #signup_client{
    width: 400px;
    margin-right: auto !important;
    margin-left: auto !important;
    margin-top: -20px !important;
}


.checkmark-icon svg{
    color: var(--primary-color);
}

.populer-tag{
    background-color: var(--primary-color) !important;
    border: 4px solid white !important;
}

.populer-tag .tag{
    color: white !important;
    font-family: var(--primary-font) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
}

#plans-mobile{
    background-color: var(--primary-color);
    padding-top: 35px;
    padding-bottom: 35px;
    margin-top: 50px;
    border-radius: 25px;
    width: 100% !important;
}

.signup-plans-container{
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
}


@media screen and (max-width: 1400px) {
    body {
        overflow: auto;
    }

    .signup-plans-container{
        overflow-x: auto !important;
        padding-top: 20px;
        padding-left: 220px;
    }

    #left-primary-con-card {
        display: none !important;
    }

    #right-form-content {
        width: 100% !important;
        height: 100vh !important;
    }

    .plan-card {
        box-shadow:  0px 3px 13px 1px #0000001a;
    }
}


@media screen and (max-width: 800px) {
    
    .plan-back:first-child{
        margin-left: 400px !important;
    }

    .signup-plans-container{
        padding-right: 40px;
        padding-bottom: 35px;
    }
    
    .signup_pro_back{
        width: 100% !important;
        height: 1000px !important;
    }

    #signup_client{
        width: 100% !important;
        height: 800px !important;
        padding-top: 80px !important;
    }

    .signup-brand-logo{
        position: relative !important;
    }

    .signup-go-back{
        position: absolute !important;
        right: 15px !important;
        top: 25px !important;
    }


}