:root {
    --font-family: "Poppins", sans-serif;
    --second-family: "DM Sans", sans-serif;
    --third-family: "Inter", sans-serif;
    --font3: "Source Sans Pro", sans-serif;
    --error-dark: #e41648;
    --error-10: #ffe8ee;
    --grey-dark: #6c7593;
    --white: #ffffff;
    --black-70: #4d4d4d;
    --button-primary: #7b61ff;
    --purpleblue-light: #e2eaff;
    --button-hovered2: #f3f4f4;
    --black: #000000;
}

body {
    padding: 0;
    margin: 0;
    background-color: rgba(255, 255, 255, 1);
    background-image: url(../../assets/images/Background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 100%;
    min-height: 100vh;
    /* width: 100vw; */
    overflow-x: hidden;
}

#header-pc {
    display: flex;
    justify-content: space-around;
    margin-top: 3px;
}

ul {
    padding: 0;
    margin: 0;
    display: flex;
}

li {
    list-style: none;
}

.manu-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.manu-div > ul {
    display: flex;
}

.manu-div > ul > li > a {
    text-decoration: none;
    font-family: "Poppins", system-ui;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    margin-right: 44px;
    color: #000;
}

.btn-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-btn-2 {
    width: 132px;
    height: 52px;
    border-radius: 12px;
    font-family: "Poppins", system-ui;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    background: #000;
}

.header-btn-2:hover {
    cursor: pointer;
    background: #000000d9;
}

/* -----------------------------------------------------------------------*/

.container {
    width: 80px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.stick {
    width: 50px;
    height: 3px;
    border-radius: 4px;
    margin-bottom: 15px;
    background-color: rgba(123, 97, 255, 1);
    display: inline-block;
}

.stick:last-child {
    margin-bottom: 0;
}

.stick-1.open {
    animation: stick-1-open 0.6s ease-out forwards;
}

.stick-2.open {
    animation: stick-2-open 0.6s linear forwards;
}

.stick-3.open {
    animation: stick-3-open 0.6s linear forwards;
}

@keyframes stick-1-open {
    0% {
        width: 50px;
    }
    40% {
        background-color: #ff1456;
        width: 8px;
        transform: translate(40px, 0px);
    }
    75%,
    80% {
        width: 8px;
        transform: translate(40px, -50px);
        animation-timing-function: cubic-bezier(0, 1, 1, 1);
    }
    100% {
        background-color: #ff1456;
        width: 0;
        transform: translate(35px, 46px);
    }
}

@keyframes stick-2-open {
    80% {
        background-color: rgba(123, 97, 255, 1);
        transform: translate(0px, 0px) rotate(0deg);
    }
    100% {
        background-color: #ff1456;
        transform: translate(8px, 0px) rotate(40deg);
    }
}

@keyframes stick-3-open {
    80% {
        background-color: rgba(123, 97, 255, 1);
        transform: translate(0px, 0px) rotate(0deg);
    }
    100% {
        background-color: #ff1456;
        transform: translate(8px, -13px) rotate(-40deg);
    }
}

.stick-1.close {
    width: 8px;
    transform: translate(27px, 26px);
    animation: stick-1-close 0.6s ease-out forwards;
}

.stick-2.close {
    transform: translate(0px, 0px) rotate(40deg);
    animation: stick-2-close 0.6s ease-out forwards;
}
.stick-3.close {
    transform: translate(0px, -23px) rotate(-40deg);
    animation: stick-3-close 0.6s ease-out forwards;
}

@keyframes stick-1-close {
    0%,
    70% {
        width: 0;
    }
    100% {
        width: 50px;
        transform: translate(0, 0);
    }
}

@keyframes stick-2-close {
    0% {
        background-color: #ff1456;
        width: 50px;
    }
    20% {
        background-color: #ff1456;
        width: 8px;
        transform: translate(0, 0px) rotate(40deg);
    }
    40% {
        background-color: rgba(123, 97, 255, 1);
        width: 0;
    }
    65% {
        transform: translate(0, -70px);
        animation-timing-function: cubic-bezier(0, 1, 1, 1);
    }
    80% {
        width: 0;
    }
    100% {
        width: 50px;
        transform: translate(0, 0px);
    }
}

@keyframes stick-3-close {
    0% {
        background-color: #ff1456;
        width: 50px;
    }
    20% {
        background-color: #ff1456;
        width: 8px;
        transform: translate(0, -23px) rotate(-40deg);
    }
    40% {
        background-color: rgba(123, 97, 255, 1);
    }
    65% {
        transform: translate(0, -93px);
        animation-timing-function: cubic-bezier(0, 1, 1, 1);
    }
    90% {
        width: 8px;
    }
    100% {
        width: 50px;
        transform: translate(0, 0px);
    }
}

/* -----------------------------------------------------------------------*/
.body-div {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 84px);
}

.login-form {
    background: #fff;
    max-width: 725px;
    /* max-height: 743px; */
    border-radius: 24px;
    border: 1px solid #f5f4f8;
    box-shadow: 0 2px 12px 0 rgba(20, 20, 43, 0.08);
    margin-top: 0;
    padding: 50px 110px;
    box-sizing: border-box;
    width: 700px;
}

.onboarding-form {
    position: relative;
    background: #fff;
    width: 725px;
    height: max-content;
    border-radius: 24px;
    border: 1px solid #f5f4f8;
    box-shadow: 0 2px 12px 0 rgba(20, 20, 43, 0.08);
    margin-top: 118px;
    margin-bottom: 80px;
    padding: 53px 80px 70px;
    box-sizing: border-box;
    overflow: hidden;
}

.my-login-form {
    max-width: 725px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin: 0 auto;
}

.form-div__line {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-div__line .login-input {
    margin-bottom: 0;
}

.login-form-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 53px;
}

.login-form-title {
    width: 100%;
    text-align: center;
    margin-bottom: 42px;
}
.login-form-title {
    margin-bottom: 22px;
}

.login-form-title h1,
.login-form-logo h1 {
    font-family: var(--second-family), system-ui, system-ui;
    font-weight: 700;
    font-size: 50px;
    line-height: 124%;
    text-align: center;
    color: var(--black);
    margin-left: 14px;
    margin-top: 0;
    margin-bottom: 0;
}

.login-form-title h1 {
    margin-left: 0;
}

.login-form-title p {
    font-family: var(--font-family), system-ui;
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    text-align: center;
    color: var(--black-70);
    max-width: 322px;
    margin: 14px auto 0;
}

.login-input {
    border-radius: 12px !important;
    border: 1px solid rgba(174, 184, 194, 1) !important;
    padding: 13px 22px;
    font-family: "Poppins", system-ui;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 17px;
    display: block;
    outline: none;
    transition: all 0.3s ease;
    height: 52px;
}

.login-input::placeholder {
    color: rgba(108, 117, 147, 1);
}

.login-input.error {
    border: 1px solid var(--error-dark);
    margin-bottom: 3px;
}

.login-input:hover {
    box-shadow: 0 0 0 4px rgba(123, 97, 255, 0.2);
}

.pass-error {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-family), system-ui;
    font-weight: 400;
    font-size: 13px;
    line-height: 200%;
    color: var(--error-dark);
    margin-bottom: 13px;
}

.login-input.success {
    margin-bottom: 3px;
}

.pass-success {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-family), system-ui;
    font-weight: 400;
    font-size: 13px;
    line-height: 200%;
    color: #19d519;
    margin-bottom: 13px;
}

.my-login-form span {
    font-family: "Poppins", system-ui;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 12px;
    color: black;
}

.login-a {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 28px;
}

.login-a > a {
    text-decoration: none;
    font-family: "Poppins", system-ui;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: rgba(123, 97, 255, 1);
}
.btn-primary {
    width: 235px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 65px auto 0;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: rgba(99, 67, 216, 1);
}
.btn-primary:active {
    background: rgba(77, 52, 167, 1);
}
.btn-primary,
.login-btn {
    font-family: var(--font-family), system-ui;
    height: 52px;
    color: #fff;
    background: rgba(123, 97, 255, 1);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 21px;
    min-width: 256px;
}

.btn-primary:hover,
.btn-primary:focus,
.login-btn:focus,
.login-btn:hover {
    cursor: pointer;
    background: rgb(123, 97, 255, 0.7) !important;
}

.bottom-text {
    display: flex;
    justify-content: center;
    font-family: "Poppins", system-ui;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}
.login-form .bottom-text {
    color: #000000;
}
.bottom-text > span > a {
    color: rgba(123, 97, 255, 1);
}

#header-tel {
    padding: 10px 0;
}

.hed-tel-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    min-width: 365px;
}

.form-error {
    font-family: var(--font-family), system-ui;
    font-weight: 400;
    font-size: 13px;
    line-height: 200%;
    color: var(--error-dark);
    border-radius: 8px;
    background: var(--error-10);
    padding: 5px 11px;
    margin-bottom: 23px;
}

.check-img img {
    width: 148px;
    height: 113px;
    display: block;
    margin: 0 auto;
}
.check-img {
    margin-bottom: 45px;
}

.check-text {
    font-family: var(--font-family), system-ui;
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    text-align: center;
    color: var(--black-70);
    max-width: 422px;
    margin: 0 auto;
}

.check-text svg {
    margin: 23px 0 37px 0;
}

.check-text a {
    font-weight: 500;
    color: var(--button-primary);
    text-decoration: none;
}

.message-sent {
    font-family: var(--font-family), system-ui;
    font-weight: 400;
    font-size: 13px;
    line-height: 200%;
    text-align: center;
    color: var(--grey-dark);
    padding: 5px;
    border-radius: 8px;
    background: var(--purpleblue-light);
    margin-bottom: 30px;
}

#referralCodeBlock {
    display: none;
    margin-top: 10px;
}

.toggleButton {
    font-family: var(--font-family), system-ui;
    font-weight: 500;
    font-size: 15px;
    line-height: 173%;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--grey-dark) !important;
    cursor: pointer;
    text-align: end;
    margin-bottom: 20px;
}
.toggleButton:hover {
    text-decoration: underline;
}
.text-bottom {
    font-family: var(--font-family), system-ui;
    font-weight: 500;
    font-size: 15px;
    line-height: 173%;
    color: var(--grey-dark);
    text-align: center;
}

.hr-bottom {
    margin: 33px 10px;
}

.text-bottom a {
    color: var(--grey-dark);
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

.check-email img {
    margin: 0 auto;
    display: block;
}

.header {
    margin-bottom: 40px;
}
.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}
.header p {
    font-size: 1em;
    color: #6c757d;
}
.plans {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 55px;
}
.plan-info {
    font-family: var(--font-family), system-ui;
    font-weight: 400;
    font-size: 16px;
    line-height: 187%;
    color: var(--grey-dark);
    margin-bottom: 15px;
    height: 60px;
}
.price {
    font-family: var(--second-family), system-ui;
    font-weight: 700;
    font-size: 54px;
    line-height: 122%;
    color: var(--black);
    margin-bottom: 12px;
}
.price span {
    font-family: var(--second-family), system-ui;
    font-weight: 500;
    font-size: 20px;
    line-height: 110%;
    color: var(--grey-dark);
}

.plan-billed {
    font-family: var(--font-family), system-ui;
    font-weight: 400;
    font-size: 16px;
    line-height: 187%;
    color: var(--grey-dark);
    margin-bottom: 15px;
}
.plan-title {
    font-family: var(--second-family), system-ui;
    font-weight: 700;
    font-size: 18px;
    line-height: 111%;
    color: var(--black);
    margin-bottom: 24px;
}
.features {
    list-style: none;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    margin: 0 0 24px;
    gap: 16px;
}
.features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-family), system-ui;
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    color: var(--black);
}
.features li:before {
    content: "";
    background-image: url(../../assets/icons/check-circle.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    width: 26px;
    height: 26px;
}
.button {
    border: 1px solid var(--black);
    background: var(--white);
    border-radius: 50px;
    height: 72px;
    font-family: var(--font-family), system-ui;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: auto;
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}
.button:hover,
.button:hover {
    border: 1px solid var(--button-primary);
    background: var(--button-primary);
    color: var(--white);
    transition: all 0.4s ease-in-out;
}
.highlight {
    position: relative;
}
.highlight::after {
    content: "Value Plan";
    position: absolute;
    top: -34px;
    right: -3px;
    width: 146px;
    height: 60px;
    background: linear-gradient(90deg, #8166f3 0%, #62d9e8 100%);
    font-family: var(--second-family), system-ui;
    font-weight: 700;
    font-size: 18px;
    line-height: 167%;
    color: var(--white);
    text-align: center;
    border-radius: 16px;
    z-index: -1;
}

.pricing-container {
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.pricing-header h1 {
    font-family: var(--second-family), system-ui;
    font-weight: 700;
    font-size: 50px;
    line-height: 124%;
    text-align: center;
    color: var(--black);
    margin-bottom: 21px;
    margin-top: 0;
}
.pricing-header p {
    font-family: var(--font-family), system-ui;
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    text-align: center;
    color: var(--black-70);
    max-width: 666px;
    margin: 0 auto;
}
.pricing-header {
    margin-bottom: 120px;
}
.subtitle {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 111%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7b61ff;
    text-align: center;
    margin-bottom: 27px;
}

.plan {
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
    background: var(--white);
    border: 5px solid transparent;
    border-radius: 24px;
    padding: 40px 40px 80px;
    transition: all 0.4s ease-in-out;
    width: 394px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.plan:hover {
    border: 5px solid var(--button-primary);
    transition: all 0.4s ease-in-out;
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.plan-header img {
}
.plan-header h2 {
    font-family: var(--second-family), system-ui;
    font-weight: 500;
    font-size: 18px;
    line-height: 111%;
    color: var(--grey-dark);
    margin: 0;
}
.plan-header p {
    font-family: var(--second-family), system-ui;
    font-weight: 700;
    font-size: 24px;
    line-height: 146%;
    color: var(--black);
    margin: 0;
}
.onboarding-form .my-login-form {
    margin: 0;
    width: 100%;
}

.elementor-1553 .elementor-element.elementor-element-ea93fb8 .elementor-button {
    padding: 13px 28px;
}

.elementor-button span {
    text-decoration: inherit;
    font-family: "Poppins", sans-serif;
}
.pricing-container {
    position: relative;
}
.btn-choose {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 162%;
    color: #8693a0;
    border: none;
    background: transparent;
    margin-left: auto;
    margin-right: 0;
    position: absolute;
    right: 0;
    top: 15px;
}
.btn-choose:active,
.btn-choose:focus,
.btn-choose:focus-within,
.btn-choose:hover {
    background: transparent;
    color: #8693a0;
    text-decoration: underline;
}

.btn-login > a {
    padding: 0 4px !important;
    width: 57px !important;
    height: 26px !important;
    font-family: "Poppins", sans-serif !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    line-height: 144% !important;
    color: #000 !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-sign > a {
    border-radius: 12px !important;
    padding: 7px 18px !important;
    width: 132px !important;
    height: 52px !important;
    background: #000 !important;
    font-family: "Poppins", sans-serif !important;
    font-weight: 500 !important;
    font-size: 18px !important;
    line-height: 144% !important;
    color: #fdfcff !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.menu-item.btn-sign > a:before {
    content: "";
    background-image: url("../../assets/icons/icon-left.svg");
    width: 24px;
    height: 24px;
    display: block;
    z-index: 100000;
    position: static;
    margin-right: 4px;
}
.btn-sign > a,
.btn-login > a {
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-sign > a:focus-within,
.btn-sign > a:focus-visible,
.btn-sign > a:focus,
.btn-sign > a:active,
.btn-sign > a:hover {
    color: #fdfcff !important;
    text-decoration: none !important;
    background: #000 !important;
}

.btn-login > a:focus-within,
.btn-login > a:focus-visible,
.btn-login > a:focus,
.btn-login > a:active,
.btn-login > a:hover {
    color: #000 !important;
    text-decoration: none !important;
    background-color: transparent !important;
}

@media (max-width: 1291px) {
    .pricing-container {
        padding-bottom: 70px;
    }
    .btn-choose {
        font-weight: 400;
        font-size: 12px;
        line-height: 217%;
        right: inherit;
        top: inherit;
        bottom: 0;
        left: 0;
        text-decoration: underline;
        text-decoration-skip-ink: none;
    }
}

@media (max-width: 1320px) {
    .plans {
        gap: 20px;
        margin: 0 20px;
    }
    .plan {
        width: auto;
    }

    .elementor-1553
        .elementor-element.elementor-element-5248a2a
        .elementor-nav-menu--main
        .elementor-item {
        padding: 10px;
        font-size: 16px;
    }
}

@media (max-width: 1100px) {
    .onboarding-form {
        width: 100%;
    }
    .onboarding-form .my-login-form {
        margin: 0;
    }
    .form-div__line {
        gap: 15px;
        grid-template-columns: 1fr;
    }
    .plans {
        grid-template-columns: 1fr;
        margin: 0;
    }
    .plan.highlight {
        margin-top: 30px;
    }
    .pricing-header h1 {
        font-weight: 700;
        font-size: 28px;
        line-height: 125%;
        margin-bottom: 21px;
    }
    .pricing-header {
        margin-bottom: 60px;
    }
    .subtitle {
        font-size: 14px;
    }
    .plan-header h2 {
        font-size: 16px;
        line-height: 128%;
    }
    .plan-header p {
        font-size: 24px;
        line-height: 105%;
    }
    .plan-info {
        font-size: 12px;
        line-height: 150%;
        height: auto;
        margin-bottom: 18px;
    }
    .price {
        font-size: 40px;
        line-height: 125%;
    }
    .price span {
        font-size: 16px;
        line-height: 128%;
    }

    .plan-title {
        font-size: 16px;
        line-height: 128%;
        margin-bottom: 18px;
    }
    .features {
        gap: 10px;
    }
    .features li {
        font-size: 12px;
        line-height: 146%;
    }
    .button {
        height: 56px;
        font-size: 16px;
    }
    .plan-header {
        margin-bottom: 10px;
    }
    .pricing-header p {
        font-weight: 400;
        font-size: 12px;
        line-height: 150%;
    }

    .highlight::after {
        width: calc(100% + 8px);
        left: -4px;
        font-size: 12px;
        top: -25px;
    }
    .body-div {
        margin-left: 20px;
        margin-right: 20px;
        height: 100%;
    }
}

@media (min-width: 1025px) {
    .hidden-md-up {
        display: none !important;
    }
}

@media (max-width: 1025px) {
    .btn-login,
    .btn-sign {
        width: calc(100% - 31px);
    }
    .btn-login > a {
        border: 1px solid #000 !important;
        width: calc(100% - 30px) !important;
        margin: 0 31px 15px 31px !important;
    }

    .btn-sign > a {
        width: calc(100% - 30px) !important;
        margin: 0 31px 15px 31px !important;
    }

    .elementor-1553 .elementor-element.elementor-element-892b191 {
        padding: 0 31px;
    }
}

@media (max-width: 998px) {
    .elementor-nav-menu__text-align-center
        .elementor-nav-menu--dropdown
        .elementor-nav-menu
        a {
        justify-content: start !important;
    }

    .elementor-nav-menu--dropdown.elementor-nav-menu__container {
        top: 70px !important;
        height: calc(100vh - 84px);
    }
}

@media (max-width: 768px) {
    .login-form {
        padding: 55px 23px 26px;
        width: 100%;
    }

    .login-form-title h1,
    .login-form-logo h1 {
        font-weight: 700;
        font-size: 28px;
        line-height: 125%;
        letter-spacing: -0.01em;
        text-align: center;
    }

    .login-form-title p {
        font-weight: 400;
        font-size: 12px;
        line-height: 125%;
    }

    .login-form-logo img {
        width: 49px;
        height: 49px;
        object-fit: contain;
    }
    .login-form-logo {
        margin-bottom: 15px;
    }

    .my-login-form {
        width: 100%;
    }

    .my-login-form span {
        font-size: 14px;
        line-height: 171%;
        margin-bottom: 12px;
    }

    .btn-primary {
        font-size: 16px;
        line-height: 102%;
        margin-top: 21px;
        width: 100%;
        height: 52px;
        min-width: auto;
    }

    .login-input {
        font-family: var(--font-family), system-ui;
        font-weight: 400;
        font-size: 14px;
        line-height: 1;
        color: var(--grey-dark);
        border-radius: 8px;
        padding: 8px 14px;
        height: 40px;
    }

    .login-a > a {
        font-weight: 500;
        font-size: 12px;
        line-height: 136%;
    }
    .login-a {
        margin-bottom: 15px;
    }

    .login-btn {
        font-family: var(--font-family), system-ui;
        font-weight: 500;
        font-size: 16px;
        line-height: 102%;
        color: var(--white);
        border-radius: 8px;
    }

    .bottom-text {
        font-weight: 500;
        font-size: 12px;
        line-height: 136%;
    }
}
.knowledge-base__text .highlight {
    background-color: #ffd465;
}
.select__content,
.select__value {
    margin-bottom: 0 !important;
}
.onboarding-form.onboarding-form--info {
    max-height: 100%;
}
.onboarding-form .login-input {
    border-radius: 12px !important;
    border: 1px solid rgba(174, 184, 194, 1) !important;
    padding: 8px 14px;
    font-family: "Poppins", system-ui;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 13px;
    display: block;
    outline: none;
    transition: all 0.3s ease;
}
* {
    box-sizing: border-box;
}
.options {
    display: flex;
    gap: 11px;
}
.option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.option__item {
    position: relative;
    cursor: pointer;
}
.option__item:not(:last-child) {
    margin-bottom: 5em;
}
.option__input {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}

.option__input:focus-visible + .option__label:before {
    box-shadow: 0 0 5px #000;
}
.option__input:checked + .option__label:before {
}
.option__input:checked + .option__label:after {
    transform: scale(1);
}
.option__label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}
.option__label:before {
    content: "";
    align-self: flex-start;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 50%;
    border: 1px solid rgba(174, 184, 194, 1);
    box-sizing: border-box;
}
.option__label:after {
    content: "";
    transition: all 0.3s ease 0s;
    transform: scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(123, 97, 255, 1);
    position: absolute;
    left: 5px;
    top: 5px;
}
fieldset {
    border: none;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-block-start: 0;
    padding-inline-start: 0;
    padding-inline-end: 0;
    padding-block-end: 0;
}

legend {
    padding-inline-start: 0;
    padding-inline-end: 0;
    font-family: "Poppins", system-ui;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

legend:not(:last-child) {
    margin-bottom: 14px;
}

.onboarding__form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.onboarding__block {
    display: grid;
    grid-template-columns: 174px 1fr;
    gap: 32px;
    width: 100%;
}

.onboarding__country {
    font-family: "Poppins", system-ui;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: rgba(108, 117, 147, 1);
    white-space: nowrap;
}

.onboarding__legal-form {
    display: flex;
    flex-direction: column;
    gap: 45px;
    max-width: 596px;
    margin: 0 auto;
}

.form-btn.hidden {
    display: none !important;
}

.form-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

._select-open .select__title {
    box-shadow: 0 0 0 4px rgba(123, 97, 255, 0.2);
}

.clearBtn {
    background: #fff;
}

.textarea--answer {
    position: relative;
}

.textarea-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
