/* ============================================
   Auth Page - Modern Login/Signup
   Matches the landing page aesthetic
   ============================================ */

/* Hide shimmer overlay on auth pages */
body:has(.auth-page) .page-shimmer-overlay,
body:has(.auth-page) .page-progress-bar,
.auth-page ~ .page-shimmer-overlay,
.auth-page ~ .page-progress-bar {
    display: none !important;
}

/* ============================================
   CSS Variables
   ============================================ */
.auth-page {
    --auth-primary: #01161E;
    --auth-primary-light: #023a4a;
    --auth-accent: #10b981;
    --auth-accent-light: #34d399;
    --auth-text: #1f2937;
    --auth-text-muted: #6b7280;
    --auth-bg: #ffffff;
    --auth-bg-subtle: #f9fafb;
    --auth-border: #e5e7eb;
    --auth-error: #ef4444;
    --auth-success: #22c55e;
}

/* ============================================
   Base Layout
   ============================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

/* ============================================
   Animated Background
   ============================================ */
.auth-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.auth-bg__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(1, 22, 30, 0.03) 0%, 
        rgba(16, 185, 129, 0.05) 50%,
        rgba(1, 22, 30, 0.02) 100%
    );
}

.auth-bg__grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(1, 22, 30, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 22, 30, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 70%);
}

.auth-bg__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: authGlow 15s ease-in-out infinite;
}

.auth-bg__glow--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.auth-bg__glow--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(1, 22, 30, 0.08) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -7s;
}

@keyframes authGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.1); }
}

/* ============================================
   Back Button
   ============================================ */
.auth-back {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--auth-border);
    border-radius: 10px;
    color: var(--auth-text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: fadeInDown 0.5s ease-out both;
}

.auth-back:hover {
    background: var(--auth-bg);
    border-color: var(--auth-primary);
    color: var(--auth-primary);
    transform: translateX(-3px);
}

.auth-back svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.auth-back:hover svg {
    transform: translateX(-3px);
}

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

/* ============================================
   Container
   ============================================ */
.auth-container {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* ============================================
   Visual Side (Left)
   ============================================ */
.auth-visual {
    position: relative;
    background: linear-gradient(135deg, var(--auth-primary) 0%, var(--auth-primary-light) 100%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.auth-visual__content {
    position: relative;
    z-index: 2;
    max-width: 480px;
    animation: slideInLeft 0.8s ease-out both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.auth-visual__logo {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.auth-visual__logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.auth-visual__logo-text {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

.auth-visual__logo-dot {
    color: var(--auth-accent);
}

.auth-visual__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.auth-visual__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 400px;
}

/* Feature Cards */
.auth-visual__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-visual__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.auth-visual__feature.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.auth-visual__feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.auth-visual__feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--auth-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-visual__feature-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.auth-visual__feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.auth-visual__feature-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
}

.auth-visual__feature-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Decorative Circles */
.auth-visual__decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.auth-visual__circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-visual__circle--1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    animation: circleFloat 20s ease-in-out infinite;
}

.auth-visual__circle--2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
    animation: circleFloat 15s ease-in-out infinite reverse;
}

.auth-visual__circle--3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation: circleFloat 18s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes circleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 20px) rotate(180deg); }
}

/* ============================================
   Form Side (Right)
   ============================================ */
.auth-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--auth-bg);
}

.auth-form-wrapper {
    width: 100%;
    max-width: 400px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

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

/* Mobile Logo (hidden on desktop) */
.auth-mobile-logo {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.auth-mobile-logo__img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.auth-mobile-logo__text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--auth-primary);
    letter-spacing: -0.02em;
}

.auth-mobile-logo__dot {
    color: var(--auth-accent);
}

/* Form Header */
.auth-form-header {
    margin-bottom: 2rem;
}

.auth-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--auth-primary);
    margin-bottom: 0.5rem;
}

.auth-form-subtitle {
    font-size: 0.9375rem;
    color: var(--auth-text-muted);
}

/* Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.auth-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.auth-form-group--half {
    width: 100%;
}

@media (max-width: 600px) {
    .auth-form-row {
        grid-template-columns: 1fr;
    }
}

.auth-form-group.is-focused .auth-form-label {
    color: var(--auth-primary);
}

.auth-form-group.is-focused .auth-input {
    border-color: var(--auth-primary);
    box-shadow: 0 0 0 3px rgba(1, 22, 30, 0.1);
}

.auth-form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--auth-text);
    transition: color 0.3s ease;
}

.auth-form-label svg {
    width: 16px;
    height: 16px;
    color: var(--auth-text-muted);
}

.auth-input-wrapper {
    position: relative;
}

.auth-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--auth-text);
    background: var(--auth-bg);
    border: 1px solid var(--auth-border);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.auth-input::placeholder {
    color: var(--auth-text-muted);
}

.auth-input:focus {
    outline: none;
    border-color: var(--auth-primary);
    box-shadow: 0 0 0 3px rgba(1, 22, 30, 0.1);
}

.auth-input-wrapper--password .auth-input {
    padding-right: 3rem;
}

/* Password Toggle */
.auth-password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--auth-text-muted);
    transition: color 0.2s ease;
}

.auth-password-toggle:hover {
    color: var(--auth-primary);
}

.auth-password-toggle svg {
    width: 18px;
    height: 18px;
}

.auth-password-toggle__hide {
    display: none;
}

.auth-input-wrapper.is-visible .auth-password-toggle__show {
    display: none;
}

.auth-input-wrapper.is-visible .auth-password-toggle__hide {
    display: block;
}

/* Form Options */
.auth-form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--auth-text-muted);
}

.auth-remember__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.auth-remember__checkmark {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--auth-border);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
}

.auth-remember__input:checked + .auth-remember__checkmark {
    background: var(--auth-primary);
    border-color: var(--auth-primary);
}

.auth-remember__checkmark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.auth-remember__input:checked + .auth-remember__checkmark::after {
    opacity: 1;
}

.auth-forgot {
    font-size: 0.875rem;
    color: var(--auth-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-forgot:hover {
    color: var(--auth-primary);
}

/* Submit Button */
.auth-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9375rem 1.5rem;
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: white;
    background: var(--auth-primary);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-submit:hover {
    background: var(--auth-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 22, 30, 0.2);
}

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

.auth-submit svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.auth-submit:hover svg {
    transform: translateX(3px);
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.75rem 0;
}

.auth-divider__line {
    flex: 1;
    height: 1px;
    background: var(--auth-border);
}

.auth-divider__text {
    font-size: 0.8125rem;
    color: var(--auth-text-muted);
    white-space: nowrap;
}

/* Social Login */
.auth-social {
    display: flex;
    gap: 1rem;
}

.auth-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--auth-text);
    background: var(--auth-bg);
    border: 1px solid var(--auth-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-social-btn:hover:not(:disabled) {
    border-color: var(--auth-primary);
    background: var(--auth-bg-subtle);
}

.auth-social-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.auth-social-btn svg {
    flex-shrink: 0;
}

/* Sign Up Link */
.auth-signup-link {
    text-align: center;
    margin-top: 1.75rem;
    font-size: 0.9375rem;
    color: var(--auth-text-muted);
}

.auth-signup-link a {
    color: var(--auth-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-signup-link a:hover {
    color: var(--auth-primary);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr;
    }
    
    .auth-visual {
        display: none;
    }
    
    .auth-form-section {
        min-height: 100vh;
        padding: 5rem 1.5rem 2rem;
        align-items: flex-start;
    }
    
    .auth-form-wrapper {
        max-width: 100%;
    }
    
    .auth-mobile-logo {
        display: flex;
    }
    
    .auth-back {
        top: 1rem;
        left: 1rem;
    }
}

@media (max-width: 480px) {
    .auth-form-section {
        padding: 4.5rem 1rem 1.5rem;
    }
    
    .auth-form-title {
        font-size: 1.5rem;
    }
    
    .auth-social {
        flex-direction: column;
    }
    
    .auth-form-options {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .auth-bg__glow,
    .auth-visual__circle {
        animation: none;
    }
    
    .auth-visual__content,
    .auth-form-wrapper,
    .auth-back,
    .auth-visual__feature {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .auth-visual__feature.is-visible {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   Messages Component Override
   ============================================ */
.auth-form-wrapper .alert {
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

/* ============================================
   Plan Selector Styles
   ============================================ */
.auth-form-group--plans {
    margin-bottom: 0.5rem;
}

.auth-plan-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.auth-plan-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--auth-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background: var(--auth-bg);
}

.auth-plan-option:hover {
    border-color: var(--auth-primary-light);
    background: var(--auth-bg-subtle);
}

.auth-plan-option--selected {
    border-color: var(--auth-primary);
    background: rgba(1, 22, 30, 0.03);
}

.auth-plan-option--selected .auth-plan-option__check {
    opacity: 1;
    transform: scale(1);
}

.auth-plan-option__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.auth-plan-option__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.auth-plan-option__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-plan-option__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--auth-text);
}

.auth-plan-option__badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-plan-option__badge--trial {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.auth-plan-option__badge--free {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.auth-plan-option__price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.auth-plan-option__price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--auth-text);
}

.auth-plan-option__price-free {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--auth-accent);
}

.auth-plan-option__price-period {
    font-size: 0.75rem;
    color: var(--auth-text-muted);
}

.auth-plan-option__limits {
    display: flex;
    gap: 1rem;
    margin-top: 0.25rem;
}

.auth-plan-option__limit {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--auth-text-muted);
}

.auth-plan-option__limit i {
    width: 12px;
    height: 12px;
}

.auth-plan-option__check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--auth-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.auth-plan-option__check i {
    width: 14px;
    height: 14px;
}

/* Mobile Plan Selector */
@media (max-width: 767px) {
    .auth-plan-option {
        padding: 0.875rem;
    }
    
    .auth-plan-option__limits {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .auth-plan-option__name {
        font-size: 0.9rem;
    }
    
    .auth-plan-option__price-amount,
    .auth-plan-option__price-free {
        font-size: 1.1rem;
    }
}

/* ============================================
   Centered Auth Layout (Forgot Password, etc.)
   ============================================ */
.auth-container.auth-container--centered {
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
}

.auth-container--centered .auth-form-section,
.auth-form-section.auth-form-section--centered {
    flex: none;
    width: 100%;
    max-width: 520px;
    min-height: auto;
    padding: 0;
    background: transparent;
}

.auth-container--centered .auth-form-wrapper,
.auth-form-section--centered .auth-form-wrapper {
    background: var(--auth-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--auth-border);
    width: 100%;
}

/* Form Icon */
.auth-form-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--auth-primary) 0%, var(--auth-primary-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.auth-form-icon i {
    width: 28px;
    height: 28px;
}

.auth-form-icon--success {
    background: linear-gradient(135deg, var(--auth-accent) 0%, var(--auth-accent-light) 100%);
}

/* OTP Input Styles */
.auth-otp-container {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.auth-otp-input {
    width: 48px;
    height: 56px;
    border: 2px solid var(--auth-border);
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    background: var(--auth-bg);
    color: var(--auth-text);
    transition: all 0.2s ease;
    font-family: 'Courier New', monospace;
}

.auth-otp-input:focus {
    outline: none;
    border-color: var(--auth-primary);
    box-shadow: 0 0 0 3px rgba(1, 22, 30, 0.1);
}

.auth-otp-input:hover:not(:focus) {
    border-color: var(--auth-primary-light);
}

/* Resend Section */
.auth-resend {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--auth-border);
}

.auth-resend__text {
    font-size: 0.875rem;
    color: var(--auth-text-muted);
    margin: 0 0 0.75rem;
}

.auth-resend__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: var(--auth-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.auth-resend__btn:hover {
    background: rgba(1, 22, 30, 0.05);
}

.auth-resend__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.auth-resend__btn i {
    width: 16px;
    height: 16px;
}

.auth-resend__timer {
    font-size: 0.875rem;
    color: var(--auth-text-muted);
    margin: 0;
}

/* Forgot Password Link */
.auth-forgot-link {
    font-size: 0.875rem;
    color: var(--auth-primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.auth-forgot-link:hover {
    opacity: 0.8;
}

/* Animate spin for loading */
.animate-spin {
    animation: spin 1s linear infinite;
}

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

/* Mobile Centered Auth */
@media (max-width: 767px) {
    .auth-container.auth-container--centered {
        padding: 1rem;
        padding-top: 4rem;
        min-height: 100vh;
    }
    
    .auth-container--centered .auth-form-section,
    .auth-form-section.auth-form-section--centered {
        max-width: 100%;
    }
    
    .auth-container--centered .auth-form-wrapper,
    .auth-form-section--centered .auth-form-wrapper {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .auth-otp-input {
        width: 42px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .auth-form-icon {
        width: 56px;
        height: 56px;
    }
    
    .auth-form-icon i {
        width: 24px;
        height: 24px;
    }
}

