/**
 * Custom Login Page Styles
 * 
 * @package YOOPixel Management
 * @since 2.2.0
 */



/* Force responsive behavior */
html {
    -webkit-text-size-adjust: 100% !important;
    -ms-text-size-adjust: 100% !important;
}

/* Login Page Styles */
body.yoopxl-login-page {
    margin: 0 !important;
    padding: 0 !important;
        background: url('../images/background.png') center center no-repeat !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100vh !important; /* allow vertical scroll */
    -webkit-overflow-scrolling: touch !important; /* smoother scroll on iOS */
}

body.yoopxl-login-page *,
body.yoopxl-login-page *::before,
body.yoopxl-login-page *::after {
    box-sizing: border-box !important;
}

body.yoopxl-login-page button,
body.yoopxl-login-page .yoopxl-btn,
body.yoopxl-login-page a.yoopxl-btn {
    transition: all 0.3s ease !important;
    transform: none !important;
}

body.yoopxl-login-page button:hover,
body.yoopxl-login-page .yoopxl-btn:hover,
body.yoopxl-login-page a.yoopxl-btn:hover {
    transform: translateY(-2px) !important;
}

/* Hide header and footer on login page */
body.yoopxl-login-page header,
body.yoopxl-login-page .site-header,
body.yoopxl-login-page .fusion-header,
body.yoopxl-login-page .avada-header,
body.yoopxl-login-page #header,
body.yoopxl-login-page .header,
body.yoopxl-login-page footer,
body.yoopxl-login-page .site-footer,
body.yoopxl-login-page .fusion-footer,
body.yoopxl-login-page .avada-footer,
body.yoopxl-login-page #footer,
body.yoopxl-login-page .footer,
body.yoopxl-login-page #main,
body.yoopxl-login-page .site-content,
body.yoopxl-login-page .fusion-main,
body.yoopxl-login-page .avada-page-content,
body.yoopxl-login-page #content,
body.yoopxl-login-page .content {
    display: none !important;
    visibility: hidden !important;
}

.yoopxl-login-page {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    background: rgba(15, 23, 42, 0.55) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    z-index: 99999 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    animation: fadeIn 0.3s ease !important;
    margin: 0 !important;
    max-width: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Wrapper */
.yoopxl-login-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f7fafc;
    z-index: 99999;
    overflow-y: auto;
}

.yoopxl-login-wrapper * {
}

.yoopxl-login-container {
    display: flex !important;
    max-width: 950px !important;
    width: 100% !important;
    margin: 0 auto !important;
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3) !important;
    overflow: hidden !important;
    min-height: 430px !important;
    max-height: calc(100vh - 36px) !important;
    animation: slideUp 0.4s ease !important;
    position: relative !important;
    flex-wrap: nowrap !important;
    height: auto !important;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Left Side - Image */
.yoopxl-login-image {
    flex: 1.2;
    background: #f8f9fa url('../images/background.jpg') left center no-repeat;
    background-size: cover;
    position: relative;
    display: none;
    overflow: hidden;
    min-width: 0;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .yoopxl-login-image {
        display: block;
    }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 50px;
    overflow: hidden;
}

.overlay-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.15);
    padding: 30px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.overlay-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.overlay-content p {
    font-size: 14px;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Right Side - Form */
.yoopxl-login-form-section {
    flex: 1;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: visible;
    min-width: 0;
}

@media (max-width: 767px) {
    .yoopxl-login-form-section {
        padding: 40px 30px;
    }
}

/* Close Modal Button */
.yoopxl-close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #718096;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.yoopxl-close-modal:hover {
    color: #fff;
    background: #EEB44E;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(238, 180, 78, 0.3);
}

.yoopxl-close-modal .dashicons {
    font-family: dashicons !important;
    font-size: 22px;
    width: 22px;
    height: 22px;
}

/* Logo */
.yoopxl-login-logo {
    text-align: center;
    margin-bottom: 14px;
}

.yoopxl-login-logo a {
    display: inline-block;
    transition: opacity 0.2s;
}

.yoopxl-login-logo a:hover {
    opacity: 0.8;
}

.yoopxl-login-logo img {
    max-width: 168px;
    height: auto;
}

/* Form Container */
.form-container {
    display: none;
}

.form-container.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container h1 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 13px;
    color: #718096;
    margin-bottom: 14px;
}

/* Form Groups */
.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 5px;
}

.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 9px 12px;
    font-size: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s;
	color: #626262;
}

.yoopxl-password-wrapper {
    position: relative;
    display: block;
}

/* Keep forgot-password fields identical for password/text states */
#forgot-new-password,
#forgot-confirm-password {
    width: 100% !important;
    padding: 9px 42px 9px 12px !important;
    font-size: 14px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: #626262 !important;
    line-height: 1.35 !important;
    box-sizing: border-box !important;
    transition: all 0.2s !important;
}

.yoopxl-toggle-password {
    position: absolute !important;
    right: 12px !important;
    top: 21% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    padding: 4px !important;
    cursor: pointer !important;
    color: #a0aec0 !important;
    transition: color 0.2s ease !important;
    margin: 0 !important;
    z-index: 10 !important;
}

.yoopxl-toggle-password:hover {
    color: #EEB44E !important;
}

.yoopxl-toggle-password .dashicons {
    font-family: dashicons !important;
    width: 20px;
    height: 20px;
    font-size: 20px;
}

.yoopxl-toggle-password:focus,
.yoopxl-toggle-password:active {
    box-shadow: none !important;
    outline: none !important;
}

#forgot-new-password:focus,
#forgot-confirm-password:focus {
    outline: none !important;
    border-color: #EEB44E !important;
    box-shadow: 0 0 0 3px rgba(238, 180, 78, 0.1) !important;
}

.form-group input:focus {
    outline: none;
    border-color: #EEB44E;
    box-shadow: 0 0 0 3px rgba(238, 180, 78, 0.1);
}

/* Forgot-password verification code inputs (force visible digits) */
body.yoopxl-login-page .yoopxl-code-input,
body.yoopxl-login-page input.yoopxl-code-input,
.yoopxl-login-page .yoopxl-code-input,
.yoopxl-login-page input.yoopxl-code-input {
    color: #1f2937 !important;
    -webkit-text-fill-color: #1f2937 !important;
    caret-color: #EEB44E !important;
    font-weight: 700 !important;
    padding: 0 !important;
    line-height: 56px !important;
    box-sizing: border-box !important;
    text-indent: 0 !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

body.yoopxl-login-page .yoopxl-code-input::placeholder,
.yoopxl-login-page .yoopxl-code-input::placeholder {
    color: #9ca3af !important;
    -webkit-text-fill-color: #9ca3af !important;
}

/* Form Row */
.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #4a5568;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
}

.link-btn {
    font-size: 13px;
    color: #EEB44E;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    background: none !important;
    border: none !important;
    padding: 0;
    cursor: pointer;
}

.link-btn:hover {
    color: #d89b3a;
    background: none !important;
    border: none !important;
}

.link-btn:focus,
.link-btn:active {
    background: none !important;
    border: none !important;
    outline: none;
    box-shadow: none;
}

.link-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

/* Keep footer "Resend Activation Code" slightly smaller than other links */
#resend-activation-link {
    font-size: 12px;
}

/* Message Box - Fixed position, doesn't affect page layout */
.message-box {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 500px;
    width: calc(100% - 40px);
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    z-index: 100002;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideDownMessage 0.3s ease-out;
}

@keyframes slideDownMessage {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.message-box.success {
    background: #c6f6d5;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.message-box.error {
    background: #fed7d7;
    color: #742a2a;
    border: 1px solid #fc8181;
}

.message-box.info {
    background: #bee3f8;
    color: #2c5282;
    border: 1px solid #90cdf4;
}

/* Login-specific global flow alert (outside form box, top viewport) */
#yoopxl-login-global-alert {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: calc(100vw - 24px);
    z-index: 100005;
    pointer-events: none;
    text-align: center;
}

#yoopxl-login-global-alert .yoopxl-flow-alert {
    margin: 0;
    pointer-events: auto;
    display: inline-flex;
    max-width: 100%;
}

#yoopxl-login-global-alert .yoopxl-flow-alert {
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.25);
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
}

#yoopxl-login-global-alert .yoopxl-flow-alert__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 10px;
    text-align: left;
}

#yoopxl-login-global-alert .yoopxl-flow-alert__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #2563eb;
    font-size: 18px;
    flex-shrink: 0;
}

#yoopxl-login-global-alert .yoopxl-flow-alert__body {
    color: #1e3a8a;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    min-height: 32px;
}

#yoopxl-login-global-alert .yoopxl-flow-alert--success .yoopxl-flow-alert__inner {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

#yoopxl-login-global-alert .yoopxl-flow-alert--success .yoopxl-flow-alert__icon {
    color: #16a34a;
    border-color: rgba(22, 163, 74, 0.22);
}

#yoopxl-login-global-alert .yoopxl-flow-alert--success .yoopxl-flow-alert__body {
    color: #14532d;
}

#yoopxl-login-global-alert .yoopxl-flow-alert--error .yoopxl-flow-alert__inner {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

#yoopxl-login-global-alert .yoopxl-flow-alert--error .yoopxl-flow-alert__icon {
    color: #dc2626;
    border-color: rgba(220, 38, 38, 0.22);
}

#yoopxl-login-global-alert .yoopxl-flow-alert--error .yoopxl-flow-alert__body {
    color: #7f1d1d;
}

#yoopxl-login-global-alert .yoopxl-flow-alert--warning .yoopxl-flow-alert__inner {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

#yoopxl-login-global-alert .yoopxl-flow-alert--warning .yoopxl-flow-alert__icon {
    color: #d97706;
    border-color: rgba(217, 119, 6, 0.24);
}

#yoopxl-login-global-alert .yoopxl-flow-alert--warning .yoopxl-flow-alert__body {
    color: #92400e;
}

#yoopxl-login-global-alert .yoopxl-flow-alert--info .yoopxl-flow-alert__inner {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

#yoopxl-login-global-alert .yoopxl-flow-alert--info .yoopxl-flow-alert__icon {
    color: #2563eb;
    border-color: rgba(37, 99, 235, 0.24);
}

#yoopxl-login-global-alert .yoopxl-flow-alert--info .yoopxl-flow-alert__body {
    color: #1e3a8a;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 11px 18px;
    background: #EEB44E;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.submit-btn:hover {
    background: #d89b3a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(238, 180, 78, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    display: inline-block;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form Footer */
.form-footer {
    margin-top: 12px;
    text-align: center;
}

.form-footer p {
    font-size: 13px;
    color: #718096;
    margin-bottom: 6px;
}

.form-footer a {
    color: #EEB44E;
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    color: #d89b3a;
}

/* Responsive */
@media (max-width: 767px) {
    .yoopxl-login-container {
        min-height: auto;
    }
    
    .form-container h1 {
        font-size: 24px;
    }
    
    .form-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    /* extra mobile tweaks */
    body.yoopxl-login-page {
        background-attachment: scroll !important; /* mobile: avoid fixed-bg perf cost */
    }
    
    /* Safari: 16px inputs avoid auto-zoom */
    .form-input {
        font-size: 16px !important;
        -webkit-appearance: none;
        appearance: none;
    }
    
    /* touch: faster tap */
    .form-button,
    .form-link {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .yoopxl-login-wrapper {
        padding: 10px 8px !important;
    }
    
    .yoopxl-login-container {
        margin: 5px 0 !important;
        border-radius: 8px !important;
    }
    
    .form-container {
        padding: 20px 15px !important;
    }
    
    .form-container h1 {
        font-size: 20px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .yoopxl-login-wrapper {
        padding: 8px 5px !important;
    }
    
    .form-container {
        padding: 15px 12px !important;
    }
    
    .form-container h1 {
        font-size: 18px;
    }
    
    .form-button {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Payment cancelled / success (Stripe return) — same shell + typography as login */
.yoopxl-payment-flow .yoopxl-payment-flow-inner {
    text-align: center;
}

.yoopxl-payment-flow .yoopxl-payment-flow-inner .form-subtitle {
    text-align: center;
}

.yoopxl-payment-flow .yoopxl-payment-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fef3c7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.yoopxl-payment-flow.yoopxl-payment-success .yoopxl-payment-icon-wrap {
    background: #d1fae5;
}

.yoopxl-payment-flow .yoopxl-payment-icon-wrap svg {
    width: 40px;
    height: 40px;
    color: #d97706;
}

.yoopxl-payment-flow.yoopxl-payment-success .yoopxl-payment-icon-wrap svg {
    color: #059669;
}

.yoopxl-payment-flow .yoopxl-payment-notice {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    background: #fef9c3;
    border: 1px solid #fde047;
    color: #854d0e;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.yoopxl-payment-flow .yoopxl-payment-notice svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.yoopxl-payment-flow .yoopxl-payment-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.yoopxl-payment-flow .yoopxl-payment-actions .submit-btn {
    width: auto;
    min-width: 0;
    padding: 13px 28px;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    line-height: 1.35;
}

.yoopxl-payment-flow .yoopxl-payment-actions .submit-btn.yoopxl-btn-muted {
    background: #f3f4f6;
    color: #374151;
}

.yoopxl-payment-flow .yoopxl-payment-actions .submit-btn.yoopxl-btn-muted:hover {
    background: #e5e7eb;
    box-shadow: none;
    transform: translateY(-1px);
}

.yoopxl-payment-flow .yoopxl-payment-spinner-wrap {
    margin: 0 auto 16px;
}

.yoopxl-payment-flow .yoopxl-payment-spinner {
    width: 36px;
    height: 36px;
    border: 4px solid #e5e7eb;
    border-top-color: #EEB44E;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

.yoopxl-payment-flow .yoopxl-payment-status-text {
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 24px;
}

/* Payment cancel — pending plan summary (matches register paid card; left column) */
.yoopxl-plan-card--payment-cancel-overlay {
    margin-top: 20px;
    text-align: left;
}

.yoopxl-plan-card--payment-cancel-overlay .yoopxl-plan-card-interval-pill,
.yoopxl-plan-card--on-light .yoopxl-plan-card-interval-pill {
    margin: 0 0 12px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.yoopxl-plan-card--payment-cancel-overlay .yoopxl-plan-card-interval-pill {
    color: rgba(255, 255, 255, 0.88);
}

/* Mobile: left image column hidden — show same plan card above form */
.yoopxl-payment-cancel-plan-mobile {
    display: none;
}

@media (max-width: 767px) {
    .yoopxl-payment-cancel-plan-mobile {
        display: block;
        margin-bottom: 20px;
    }
}

/* Light variant (form column on small screens) */
body.yoopxl-login-page .yoopxl-plan-card--on-light {
    padding: 16px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-align: left;
}

body.yoopxl-login-page .yoopxl-plan-card--on-light .yoopxl-plan-card-name {
    color: #2d3748 !important;
}

body.yoopxl-login-page .yoopxl-plan-card--on-light .yoopxl-plan-card-badge {
    background: rgba(238, 180, 78, 0.12);
    border-color: rgba(238, 180, 78, 0.35);
    color: #b7791f;
}

body.yoopxl-login-page .yoopxl-plan-card--on-light .yoopxl-plan-card-currency {
    color: #718096 !important;
}

body.yoopxl-login-page .yoopxl-plan-card--on-light .yoopxl-plan-card-amount {
    color: #1a202c !important;
}
body.yoopxl-login-page .yoopxl-plan-card-amount .yoopxl-price-cents {
    font-size: 0.52em;
    font-weight: 700;
    opacity: 0.88;
    vertical-align: baseline;
    color: rgba(255, 255, 255, 0.88);
}
body.yoopxl-login-page .yoopxl-plan-card--on-light .yoopxl-plan-card-amount .yoopxl-price-cents {
    color: #718096 !important;
}

body.yoopxl-login-page .yoopxl-plan-card--on-light .yoopxl-plan-card-period {
    color: #718096 !important;
}

body.yoopxl-login-page .yoopxl-plan-card--on-light .yoopxl-plan-card-billing {
    color: #718096 !important;
}

body.yoopxl-login-page .yoopxl-plan-card--on-light .yoopxl-plan-card-divider {
    background: #e2e8f0 !important;
}

body.yoopxl-login-page .yoopxl-plan-card--on-light .yoopxl-plan-card-interval-pill {
    color: #4a5568;
}

body.yoopxl-login-page .yoopxl-plan-card--on-light .yoopxl-benefits-list li {
    color: #4a5568;
}

body.yoopxl-login-page .yoopxl-plan-card--on-light .yoopxl-benefits-list .dashicons {
    color: #EEB44E !important;
}
