@import "vars.css";

.b-checks {
    display: flex;
    gap: 24px;
    color: var(--ar-blue);
    align-items: center;
    justify-content: center;
    > div {
        display: flex;
        gap: 8px;
        align-items: center;
        > span {
            font-size: 1.6rem;
        }
    }
}
.suitable-for {
    color: var(--ar-blue);
    text-align: center;
}
.limits {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}
.plan-function {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}
.plan-function a {
    color: var(--ar-blue);
}
.nav-pills {
    padding: 0;
}
.plan {
    display: flex;
    flex-direction: column;
    padding-bottom: 36px;
}
.plan.recommended-plan {
    padding-bottom: 10px;
}
.plan-delimiter {
    border: 0;
    border-bottom: 1px solid var(--ar-blue);
    margin-bottom: 10px;
    margin-top: 10px;
}
.plan-function-heading {
    text-align: center;
}
.recommended {
    background: var(--ar-blue);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}
.price-switch-wrapper .card.border-primary {
    border-color: var(--ar-blue) !important;
}
.price-switch-wrapper .card .card-body {
    padding: 0.8rem;
}
.w-10 {
    width: 10%;
}

@media (max-width: 768px) {
    .b-checks {
        flex-direction: column;
        gap: 16px;
    }
}

.login-page {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #183138;
    font-family: Raleway, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.login-page a {
    opacity: 1;
    color: #183138;
    font-weight: 700;
    transition: color 0.2s ease, opacity 0.2s ease;
}
.login-page a:hover {
    color: #515151;
}
.login-page .lp-segments {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

@media (max-width: 500px) {
    .login-page .lp-segments {
        flex-direction: column;
    }
}

.login-page .lp-segments .lp-segment {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 12px;
    padding: 12px 16px;
    border: 2px solid rgba(24, 49, 56, 0.25);
    cursor: pointer;
}
.login-page .lp-segments .lp-segment.active {
    border-color: var(--color-main);
    cursor: default;
}
.login-page .lp-segments .lp-segment .lp-segment-check {
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    position: absolute;
    right: 10px;
    top: 14px;
    width: 20px;
    height: 20px;
    opacity: 1;
    border-radius: 50%;
    border: 3px solid rgba(255, 183, 25, 0.2);
    outline: 3px solid rgba(255, 183, 25, 0.2);
    background: var(--color-main);
}

.login-page .lp-segments .lp-segment.active .lp-segment-check {
    display: flex;
}

.login-page .lp-segments .lp-segment .lp-segment-check .ai {
    font-weight: bold;
}
.login-page .lp-segments .lp-segment .lp-segment-icon {
    font-size: 30px;
    font-weight: bold;
}
.login-page .lp-segments .lp-segment .lp-segment-icon .ai {
    font-weight: bold;
}
.login-page .lp-segments .lp-segment .lp-segment-text {
    font-family: var(--font);
    font-weight: 600;
    font-size: 28px;
    line-height: 148%;
}
.login-page main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-page main .content {
    padding: 16px;
    width: 100%;
    max-width: 648px;
    max-height: calc(100vh - 76px);
}
@media (min-width: 1025px) {
    .login-page main .content {
        padding: 24px;
        max-width: 600px;
    }
}
.login-page main .content .logo-container {
    text-align: center;
    margin-bottom: 20px;
}
.login-page main .content .logo-container img {
    width: 140px;
}
.login-page main .content .lp-login-title {
    font-family: var(--font);
    font-weight: 600;
    text-align: center;
    font-size: 18px;
}
.login-page main .content .lp-login-subtitle {
    font-family: var(--font-text);
    text-align: center;
    font-size: 14px;
    margin-top: -18px;
}
.login-page main .content .lp-card {
    background: #fff;
    color: #334155;
    box-shadow: 0 20px 60px rgba(47, 28, 63, 0.15);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: calc(100vh - 152px);
    overflow-y: auto;
    box-sizing: border-box;
    padding: 20px 40px 40px 40px;
}
.login-page main .content .lp-card form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.login-page main .content .lp-card form .lp-register {
    margin-top: 20px;
    text-align: center;
}
.login-page main .content .lp-card form .lp-float-label {
    display: block;
    position: relative;
}
.login-page main .content .lp-card form .lp-float-label .lp-input-text {
    font-weight: 600;
    line-height: 1.5;
    width: 100%;
    font-family: inherit;
    font-feature-settings: inherit;
    font-size: 16px;
    color: #183138;
    background: #ffffff;
    padding: 24px 24px 10px;
    border: 1px solid #cbd5e1;
    transition: background 0.2s, color 0.2s, border-color 0.2s, outline-color 0.2s, box-shadow 0.2s;
    appearance: none;
    border-radius: 100px;
    outline-color: transparent;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(18, 18, 23, 0.05);
}
.login-page main .content .lp-card form .lp-float-label .lp-input-text:not(:placeholder-shown) ~ label,
.login-page main .content .lp-card form .lp-float-label .lp-input-text:-webkit-autofill ~ label,
.login-page main .content .lp-card form .lp-float-label .lp-input-text:autofill ~ label {
    top: 4px;
    font-size: 13px;
    color: #000;
}
.login-page main .content .lp-card form .lp-float-label .lp-input-text:focus {
    border-color: var(--color-main);
    box-shadow: none;
    outline: 0 none transparent;
    outline-offset: 0;
}
.login-page main .content .lp-card form .lp-float-label .lp-input-text:focus ~ label {
    top: 4px;
    font-size: 13px;
    color: var(--color-main);
}
.login-page main .content .lp-card form .lp-float-label label {
    color: #000;
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 20px;
    top: 20px;
    padding: 0 5px;
    transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
}
.login-page main .content .lp-card .profile-img-card {
    align-self: center;
    width: 96px;
    height: 96px;
    display: block;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.login-page aside {
    display: none;
}
@media (min-width: 1025px) {
    .login-page aside {
        flex: 1;
        display: block;
    }
}
.login-page aside .content {
    padding: 40px;
}
.login-page aside .content .promo-banner {
    height: calc(100vh - 80px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 60px 15px;
}
.login-page aside .content .promo-banner .banner-frame {
    position: relative;
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
}
.login-page aside .content .promo-banner .banner-frame img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.login-page aside .content .promo-banner .banner-frame .text-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 40px;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.login-page aside .content .promo-banner .banner-frame .text-content .title {
    font-family: Bevellier;
    font-size: 52px;
    margin: 0;
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
}
.login-page aside .content .promo-banner .banner-frame .text-content .subtitle {
    font-family: Raleway;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    line-height: 1.1;
}
.login-page .lp-alert {
    display: flex;
    flex-direction: column;
    background-color: var(--color-main-light);
    border-radius: var(--border-radius);
    padding: 20px;
    gap: 16px;
    border: 1px solid var(--color-main);
    font-family: var(--font-text);
    font-size: var(--font-size-alert-text);
    color: var(--color-text);
}
.login-page .lp-alert.lp-alert-info {
    background-color: var(--color-info-light);
    color: var(--color-info);
    border-color: var(--color-info);
}
.login-page .lp-alert.lp-alert-error {
    background-color: var(--color-error-light);
    color: var(--color-error);
    border-color: var(--color-error);
}
.login-page .lp-alert.lp-alert-inactive {
    background-color: var(--color-inactive-light);
    color: #666666;
    border-color: var(--color-inactive);
}
.login-page .lp-alert.lp-alert-round {
    border-radius: var(--border-radius-round);
}
.login-page .lp-alert.lp-alert-md {
    padding: 8px 16px;
}
.login-page .lp-alert.lp-alert-font-xs {
    font-size: var(--font-size-xs);
}
.login-page .lp-alert.lp-alert-h {
    flex-direction: row;
}
.login-page .lp-alert.lp-alert-h .lp-alert-text-wrapper {
    display: flex;
    flex-grow: 1;
    align-items: center;
    gap: 20px;
}
.login-page .lp-alert.lp-alert-h .lp-alert-text-wrapper .lp-alert-icons-wrap {
    white-space: nowrap;
}
.login-page .lp-alert.lp-alert-h .lp-alert-text-wrapper .lp-alert-icon.wp-award-icon {
    height: 30px;
    display: inline-block;
}
.login-page .lp-alert.lp-alert-h .lp-alert-text-wrapper .lp-alert-icon.wp-award-icon img {
    margin-top: -4px;
    display: inline-block;
}
.login-page .lp-alert.lp-alert-h .lp-alert-text-wrapper .lp-alert-text {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
}
.login-page .lp-alert .lp-alert-heading {
    font-family: var(--font);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
}
.login-page .lp-alert .lp-alert-plugins-navigate {
    text-decoration: underline;
    cursor: pointer;
}
.login-page .lp-button {
    display: inline-flex;
    align-items: center;
    font-size: var(--font-size-button);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font);
    border-radius: var(--border-radius);
    gap: 12px;
    padding: 8px 16px;
    border: 2px solid transparent;
    align-self: flex-start;
    justify-content: center;
    transition: all 150ms linear;
    white-space: nowrap;
    color: var(--color-text);
}
.login-page .lp-button > span {
    font-family: var(--font);
}
.login-page .lp-button.lp-button-block {
    width: 100%;
}
.login-page .lp-button.lp-button-sm {
    font-family: var(--font-text);
    border-radius: 2px 8px 2px 8px;
    padding: 4px 12px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
}
.login-page .lp-button.lp-button-main {
    background-color: var(--color-main);
}
.login-page .lp-button.lp-button-main:hover {
    background-color: var(--color-main-hover);
}
.login-page .lp-button.lp-button-main.lp-button-inverse {
    border-color: var(--color-main);
}
.login-page .lp-button.lp-button-main.lp-button-inverse:hover {
    background-color: var(--color-main-light);
}
.login-page .lp-button.lp-button-inverse {
    background-color: #fff;
}
