html {
    overflow-x: hidden;
}
:root {
    --container-size: 1320px;
    --container-offset: 15px;
    --primary-font: Roboto, Arial, sans-serif;
    --content-color: #1f1f1f;
    --content-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
p {
    line-height: 26px;
}
p a {
    color: #7b49c7;
}
p strong {
    font-weight: 700;
}
.np-image {
    display: block;
    margin: 0;
}
img {
    max-width: 100%;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--primary-font) !important;
    overflow-x: hidden;
    color: var(--content-color) !important;
    font-size: var(--content-size);
    margin: 0;
    padding: 0;
}
.np-container {
    max-width: var(--container-size);
    margin: auto;
    width: 100%;
    padding: 0 var(--container-offset);
    position: relative;
}
.icon-rounded {
    --size: 30px;
    width: var(--size);
    height: var(--size);
    border-radius: var(--size);
}
.last-margin-0 > *:last-child {
    margin-bottom: 0 !important;
}
.text-center {
    text-align: center;
}
.np-button {
    min-height: 40px;
    border: 0;
    transition: all 0.4s ease;
    cursor: pointer;
    background: #7125ab;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    padding: 5px 25px;
}
.np-button:hover {
    background-color: #5a1e86;
    transform: translateY(-3px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    color: white;
}
.np-checkbox {
    position: relative;
}
.np-checkbox input {
    margin: 0;
    opacity: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.np-checkbox input:checked + .tick {
    background: black;
    border-color: black;
}
.np-checkbox label {
    font-size: 14px;
    display: block;
    line-height: 20px;
    color: #444444;
    padding-left: 26px;
}
.np-checkbox .tick {
    position: absolute;
    pointer-events: none;
    top: 3px;
    left: 0;
    --size: 16px;
    width: var(--size);
    height: var(--size);
    border-radius: 3px;
    background: white;
    border: solid 1px #808080;
}
.np-form-element {
    position: relative;
    display: block;
}
.np-form-element .np-input {
    border-radius: 50px;
    width: 100%;
    resize: none;
    padding: 5px 30px;
    color: black;
    font-size: 16px;
    font-weight: 400;
    background: white;
    border: solid 1px #d6d6d6;
    height: 56px;
}
.np-form-element .np-input:focus,
.np-form-element .np-input:hover {
    outline: none !important;
    border-color: #7125ab !important;
}
.np-form-element select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
}
.np-form-element .textarea {
    height: 142px;
    padding: 20px 30px;
    resize: none;
    border-radius: 20px;
}
.np-form-element .floating-label {
    display: block;
    margin: 0;
    transition: all 0.4s ease;
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    min-height: 18px;
    background: white;
    border-radius: 50px;
    padding: 4px 9px;
    color: #525252;
}
.np-form-element .textarea + .floating-label {
    top: 18px;
    transform: none;
}
.np-form-element .np-input:focus + .floating-label,
.np-form-element .np-input:not(:placeholder-shown) + .floating-label {
    top: -9px;
    font-size: 12px;
    transform: none;
}
.np-form-element .dd-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    pointer-events: none;
}
.np-form-element .attachment-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    cursor: pointer;
}
.np-form-element .attachment-icon svg {
    width: 34px;
    height: 34px;
    pointer-events: none;
    display: block;
}
.np-form-element .attachment-icon input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 11;
}
.collapse:not(.show) {
    display: none;
}
.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}
.signup-header .np-container {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
}
.signup-header .logo-holder {
    display: flex;
    align-items: center;
    gap: 10px;
}
.signup-header .logo-holder img {
    display: block;
    max-width: 58px;
    height: auto;
}
.signup-header .logo-holder span {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
}
.signup-header .buttons-holder {
    display: flex;
    align-items: center;
    gap: 13px;
}
.signup-header .buttons-holder .np-button {
    min-height: 40px;
    background: #601d96;
    min-width: 134px;
}
@media (max-width: 767px) {
    .signup-header .logo-holder span {
        font-size: 18px;
    }
    .signup-header .buttons-holder {
        gap: 10px;
    }
}
.signup-banner {
    min-height: 346px;
    background: url(../img/signup-banner.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 50px;
    text-align: center;
    color: white;
    font-size: 1.125rem;
}
.signup-banner .title {
    color: white;
    z-index: 1;
    font-size: 36px;
    font-weight: 700;
    max-width: fit-content;
    margin: auto;
    text-align: center;
    position: relative;
}
.signup-banner:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
}
@media (max-width: 991px) {
    .signup-banner {
        min-height: 242px;
    }
    .signup-banner .title {
        font-size: 30px;
        text-transform: capitalize;
    }
    .signup-banner .title:after {
        content: none;
    }
    .signup-banner .title span {
        color: white;
    }
}
.signup-section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    color: black;
    font-size: 24px;
}
.signup-section-title .icon {
    --size: 32px;
    width: var(--size);
    height: var(--size);
    border-radius: var(--size);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #704de8;
    color: white;
    font-weight: 600;
}
.signup-section-title h3 {
    color: inherit;
    font-size: inherit;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}
.signup-error-message {
    border: solid 1px #f5c6cb;
    padding: 18px;
    border-radius: 12px;
    background: #fdecea;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    grid-gap: 10px;
    color: #721c24;
    font-size: 14px;
    margin: 0 auto 30px;
    max-width: 528px;
}
.signup-error-message span {
    display: block;
    font-weight: 700;
    padding-top: 3px;
    padding-bottom: 8px;
}
.signup-error-message ul {
    display: grid;
    grid-gap: 10px;
}
.signup-error-message ul li {
    list-style-type: none;
}
.signup-content-wrapper {
    padding-bottom: 40px;
    position: relative;
}
.signup-content-wrapper .np-form-element .np-input {
    border-radius: 8px;
    height: 48px;
    padding: 5px 20px 5px 40px;
}
.signup-content-wrapper .np-form-element .floating-label {
    left: 11px;
    color: #8a8a8a;
}
.signup-content-wrapper .np-form-element .icon {
    position: absolute;
    top: 50%;
    color: #9ca3af;
    width: 20px;
    height: auto;
    transform: translateY(-50%);
    left: 12px;
}
.signup-content-wrapper .np-form-element.no-icon .np-input {
    padding: 5px 20px;
}
.signup-content-wrapper .np-form-element .StripeElement {
    border: solid 1px #d6d6d6;
    border-radius: 8px;
    padding: 14px 20px;
}
.signup-content-wrapper .np-form-element .card-errors {
    color: #e53c3c;
    font-size: 14px;
    margin: 15px auto 0px;
}
.signup-content-wrapper .dotted_shape {
    position: absolute;
    left: 53px;
    top: 254px;
}
.signup-content-wrapper .signup_side_graphic1 {
    position: absolute;
    right: -154px;
    top: 250px;
}
.signup-content-wrapper .content-holder {
    background: white;
    margin-top: -170px;
    min-height: 400px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
}
.signup-content-wrapper .grid {
    display: grid;
    grid-template-columns: auto 1fr;
    margin-bottom: 42px;
}
.signup-content-wrapper .grid .left {
    width: 590px;
    height: calc(100% + 20px);
    border-radius: 20px;
    position: relative;
    top: -20px;
    padding: 30px 40px 20px;
    background: linear-gradient(to right, #601d96, #7f3bb7);
    border: solid 2px #a560dd;
}
.signup-content-wrapper .grid .left .signup-section-title {
    color: white;
    margin-bottom: 20px;
}
.signup-content-wrapper .grid .left .signup-section-title .icon {
    background: white;
    color: #000;
    border: solid 1px white;
}
.signup-content-wrapper .grid .right {
    padding: 24px 15px 0;
}
.signup-content-wrapper .form-holder {
    max-width: 528px;
    height: 100%;
    display: flex;
    flex-direction: column;
    grid-gap: 24px;
    width: 100%;
    margin: auto;
}
@media (min-width: 1400px) {
    .signup-content-wrapper .form-holder .signup-section-title {
        left: -48px;
    }
}
.signup-content-wrapper .form-holder .form {
    display: grid;
    grid-gap: 16px;
}
.signup-content-wrapper .form-holder .form .twocolumns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
}
.signup-content-wrapper .submit-button-holder {
    display: flex;
    flex-grow: 1;
    align-items: flex-end;
}
.signup-content-wrapper .submit-button {
    min-height: 60px;
    border-radius: 8px;
    display: flex;
    gap: 8px;
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}
.signup-content-wrapper .already-loggedin {
    position: relative;
    padding: 54px 0;
    font-weight: 700;
    text-align: center;
    color: #000000;
    font-size: 16px;
}
.signup-content-wrapper .already-loggedin:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 746px;
    background: #dfdfdf;
    height: 1px;
}
.signup-content-wrapper .already-loggedin a {
    text-decoration: underline;
    color: #7125ab;
}
.signup-content-wrapper .signup-section-titlex {
    font-size: 25px;
}
.signup-content-wrapper .signup-section-titlex h3 {
    font-size: inherit;
}
.signup-content-wrapper .login-view .grid {
    grid-template-columns: 1fr;
}
.signup-content-wrapper .login-view .signing-into {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
}
.signup-content-wrapper .login-view .signing-into a {
    color: black;
    text-decoration: none;
}
.signup-content-wrapper .login-view .signup_side_graphic1 {
    display: none;
}
@media (max-width: 991px) {
    .signup-content-wrapper .signup_side_graphic1 {
        display: none;
    }
    .signup-content-wrapper .content-holder {
        margin-top: -94px;
    }
    .signup-content-wrapper .grid {
        grid-template-columns: 1fr;
        margin-bottom: 0;
    }
    .signup-content-wrapper .grid .left {
        top: 0;
        padding: 30px 20px;
        width: 100%;
        height: auto;
        border: 0;
        overflow: hidden;
    }
    .signup-content-wrapper .grid .right {
        padding: 40px 20px;
    }
    .signup-content-wrapper .already-loggedin {
        padding: 30px 0;
        font-size: 14px;
    }
    .signup-content-wrapper .already-loggedin:before {
        max-width: calc(100% - 40px);
    }
}
@media (max-width: 767px) {
    .signup-content-wrapper .form-holder {
        max-width: 100%;
    }
    .signup-content-wrapper .form-holder .form .twocolumns {
        grid-template-columns: 1fr;
    }
}
.signup-packages {
    display: grid;
    grid-gap: 20px;
}
.signup-packages .item {
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #515151;
    padding: 26px 30px;
    background: white;
    border-radius: 16px;
    --title-base-size: 20px;
}
.signup-packages .item .inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 20px;
}
.signup-packages .item .radio {
    --size: 24px;
    position: relative;
    position: absolute;
    top: 14px;
    right: 14px;
    background: white;
    border: solid 2px #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size);
    height: var(--size);
    border-radius: var(--size);
}
.signup-packages .item .radio .icon {
    width: 16px;
    height: auto;
}
.signup-packages .item .title {
    color: black;
    flex-shrink: 0;
    font-weight: 700;
    font-size: var(--title-base-size);
    line-height: 1;
    margin: 0 0 6px;
    background: linear-gradient(to top, #000, #696969);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.signup-packages .item .price {
    font-size: calc(var(--title-base-size) - 4px);
    color: black;
    flex-shrink: 0;
    font-weight: 700;
    line-height: 24px;
}
.signup-packages .item .price:after {
    content: " / Year";
    font-weight: 400;
    color: #696969;
    font-size: calc(var(--title-base-size) - 6px);
}
@media (min-width: 992px) {
    .signup-packages .item .features {
        transition: all 0.3s ease;
        max-height: 0;
        overflow: hidden;
    }
}
.signup-packages .item .features h4 {
    color: black;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}
.signup-packages .item .features ul {
    display: grid;
    grid-gap: 10px;
    color: #1c1c1c;
    font-size: 14px;
}
.signup-packages .item .features ul li {
    list-style-type: none;
    padding-left: 22px;
    background: url(../images/benefit_icon.png) 0 4px no-repeat;
}
.signup-packages .item.active .radio {
    background: #7126ab;
    border-color: #7126ab;
}
.signup-packages .item.active .features {
    display: block;
    padding-top: 20px;
    max-height: 1000px;
}
@media (max-width: 991px) {
    .swiper{overflow: hidden; width: 100%; position: relative; padding-bottom: 36px;}
    .swiper .swiper-wrapper {
        display: flex;
        transition-property: transform;
        box-sizing: content-box;
    }
    .swiper-slide{
        flex-shrink: 0;
        width: 100%;
        position: relative;
    }

    .swiper-pagination{
        position: absolute;
        left: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .swiper-pagination-bullet{
        --bullet-size: 20px;
        width: var(--bullet-size);
        height: var(--bullet-size);
        border-radius: var(--bullet-size);
        display: flex; justify-content: center; align-items: center;
    }
    .swiper-pagination-bullet:after{content: ""; --size: 10px; background: #d3bbbb; width: var(--size); height: var(--size); border-radius: var(--size);}
    .swiper-pagination-bullet.swiper-pagination-bullet-active:after{background: white;}

    .signup-packages{gap: 0;}
    .signup-packages .item{height: 100%;}
    .signup-packages .item .inner {
        grid-template-columns: 1fr;
    }
    .signup-packages .item .inner > img {
        display: none;
    }
    .signup-packages .item .features {
        padding-top: 20px;
    }
}
.signup-footer {
    padding-bottom: 40px;
    font-size: 14px;
    text-align: center;
}
.signup-footer .np-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.signup-footer .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.signup-footer .social-icons .item img {
    display: block;
}
.signup-footer .bottom-bar {
    padding: 32px 0 60px;
    color: #333333;
    line-height: 24px;
}
@media (max-width: 991px) {
    .signup-footer .np-container {
        flex-direction: column;
        gap: 10px;
    }
}
#pageloader {
    background: rgba(255, 255, 255, 0.8);
    display: none;
    z-index: 20;
    position: absolute;
    top: 0;
    left: -5px;
    width: 100%;
    height: 100%;
}
#pageloader img {
    left: 45%;
    margin-left: -32px;
    margin-top: -32px;
    position: absolute;
    top: 35%;
}

.signup-success-message {
    border: solid 1px #c3e6cb;
    padding: 18px;
    border-radius: 12px;
    color: #155724;
    background-color: #d4edda;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    grid-gap: 10px;
    font-size: 14px;
    margin: 0 auto 30px;
    max-width: 528px;
}
.hidden {
    display: none;
}

.forgot-password-view .signup_side_graphic1 {
    display: none;
}

#togglePassword{
    width: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    cursor: pointer;
    color: gray;
}
#togglePassword:hover{color: black;}
.forgot-password-link{color: #7125ab;}

@media (max-width: 767px) {
    .signup-banner {
        font-size: 14px;
    }
}
.signup-header a {
    text-decoration: none;
}
