/* ====================================================================
   MAZE SYSTEMS - AUTH PAGES CSS (Login, Register, Checkout, Setup)
   Design limpo e moderno
   ==================================================================== */

:root {
    --primary: #FF8A3D;
    --primary-rgb: 255, 138, 61;
    --secondary: #E7A95F;
    --accent: #FF6B6B;
    --success: #4caf50;
    --error: #f44336;
    --warning: #ff9800;
    
    --bg-dark: #0a0a0b;
    --bg-card: #111113;
    --bg-input: rgba(255, 255, 255, 0.03);
    --bg-input-focus: rgba(255, 255, 255, 0.06);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-focus: rgba(255, 138, 61, 0.5);
    
    --gradient-primary: linear-gradient(135deg, #FF8A3D 0%, #E7A95F 100%);
    --gradient-glow: linear-gradient(135deg, rgba(255, 138, 61, 0.15) 0%, rgba(231, 169, 95, 0.05) 100%);
    
    --shadow-glow: 0 0 60px rgba(255, 138, 61, 0.15);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ====================================================================
   BACKGROUND - Simples e elegante
   ==================================================================== */

.auth-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

/* Gradient overlay sutil */
.auth-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 138, 61, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(231, 169, 95, 0.05) 0%, transparent 40%);
}

/* Grid pattern sutil */
.auth-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 138, 61, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 138, 61, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 0%, transparent 70%);
}

/* Glow orbs animados */
.auth-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.auth-bg-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 138, 61, 0.3) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.auth-bg-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(231, 169, 95, 0.2) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ====================================================================
   LAYOUT
   ==================================================================== */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

.auth-header {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
}

.auth-logo img {
    height: 36px;
}

.auth-back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* ====================================================================
   AUTH CARD
   ==================================================================== */

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.auth-card-header {
    padding: 35px 35px 25px;
    text-align: center;
}

.auth-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-glow);
    border: 1px solid rgba(255, 138, 61, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card-icon i {
    font-size: 26px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-card-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.auth-card-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
}

.auth-card-body {
    padding: 0 35px 35px;
}

/* ====================================================================
   FORMS
   ==================================================================== */

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-label .required {
    color: var(--primary);
}

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

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    background: var(--bg-input-focus);
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.1);
}

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

.form-input.error {
    border-color: var(--error);
}

.form-input.success {
    border-color: var(--success);
}

/* Input with icon */
.form-input-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.form-input-icon.clickable {
    pointer-events: auto;
    cursor: pointer;
    transition: var(--transition);
}

.form-input-icon.clickable:hover {
    color: var(--primary);
}

/* Select */
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

select.form-input option {
    background: var(--bg-card);
    color: var(--text-primary);
}

/* Form hint/error */
.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

.form-error-text {
    font-size: 12px;
    color: var(--error);
    margin-top: 6px;
    display: none;
}

.form-group.has-error .form-error-text {
    display: block;
}

/* Password strength */
.password-strength-bar {
    height: 3px;
    background: var(--border-color);
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
}

.password-strength-fill {
    height: 100%;
    width: 0;
    transition: var(--transition);
    border-radius: 2px;
}

.password-strength-fill.weak { width: 33%; background: var(--error); }
.password-strength-fill.medium { width: 66%; background: var(--warning); }
.password-strength-fill.strong { width: 100%; background: var(--success); }

/* ====================================================================
   BUTTONS
   ==================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 138, 61, 0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 138, 61, 0.4);
}

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

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-discord {
    background: #5865F2;
    color: white;
}

.btn-discord:hover {
    background: #4752c4;
}

.btn-google {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

.btn-google:hover {
    background: #f5f5f5;
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* ====================================================================
   DIVIDER
   ==================================================================== */

.auth-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====================================================================
   LINKS
   ==================================================================== */

.auth-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-footer-text {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 25px;
}

/* ====================================================================
   ALERTS
   ==================================================================== */

.auth-alert {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.auth-alert i {
    margin-top: 2px;
}

.auth-alert-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.auth-alert-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.auth-alert-warning {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

.auth-alert-info {
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.2);
    color: #2196f3;
}

/* ====================================================================
   CHECKBOX
   ==================================================================== */

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-wrapper label {
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-wrapper label a {
    color: var(--primary);
}

/* ====================================================================
   LOADING SPINNER
   ==================================================================== */

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

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

/* ====================================================================
   CHECKOUT SPECIFIC
   ==================================================================== */

.checkout-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.checkout-main {
    flex: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

@media (max-width: 900px) {
    .checkout-main {
        grid-template-columns: 1fr;
    }
}

/* Order Summary Card */
.order-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    position: sticky;
    top: 20px;
}

.order-summary-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-summary-header i {
    color: var(--primary);
}

.order-summary-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.order-summary-body {
    padding: 20px;
}

.order-plan {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 138, 61, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.order-plan-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
}

.order-plan-info h4 {
    font-size: 18px;
    margin-bottom: 2px;
}

.order-plan-price {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

.order-plan-period {
    color: var(--text-secondary);
    font-size: 14px;
}

.order-features {
    list-style: none;
    margin-bottom: 20px;
}

.order-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.order-features li i {
    color: var(--success);
    font-size: 12px;
}

.order-divider {
    height: 1px;
    background: var(--border-color);
    margin: 15px 0;
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.order-row-label {
    color: var(--text-secondary);
}

.order-row.total {
    font-size: 18px;
    font-weight: 600;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
}

.order-row.total .order-row-value {
    color: var(--primary);
}

.order-secure {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.15);
    border-radius: var(--radius-sm);
    margin-top: 20px;
    font-size: 12px;
    color: var(--success);
}

/* Steps indicator */
.checkout-steps {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
}

.checkout-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 15px 10px;
}

.checkout-step::before {
    content: '';
    position: absolute;
    top: 27px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: var(--border-color);
}

.checkout-step:last-child::before {
    display: none;
}

.checkout-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-input);
    border: 2px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.checkout-step-label {
    font-size: 12px;
    color: var(--text-muted);
}

.checkout-step.active .checkout-step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.checkout-step.active .checkout-step-label {
    color: var(--primary);
}

.checkout-step.completed .checkout-step-number {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.checkout-step.completed .checkout-step-label {
    color: var(--success);
}

.checkout-step.completed::before {
    background: var(--success);
}

/* ====================================================================
   SETUP PAGE
   ==================================================================== */

.setup-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.setup-main {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 20px;
}

.setup-success-banner {
    background: var(--gradient-glow);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: var(--radius-xl);
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.setup-success-banner i {
    font-size: 50px;
    color: var(--success);
    margin-bottom: 15px;
}

.setup-success-banner h1 {
    font-size: 24px;
    margin-bottom: 8px;
}

.setup-success-banner p {
    color: var(--text-secondary);
    font-size: 14px;
}

.setup-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.setup-card.completed {
    border-color: rgba(76, 175, 80, 0.3);
}

.setup-card-header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.01);
}

.setup-card-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.setup-card-header i.main-icon {
    font-size: 20px;
    color: var(--primary);
}

.setup-card-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.setup-status {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.setup-status.pending {
    background: rgba(255, 138, 61, 0.15);
    color: var(--primary);
}

.setup-status.completed {
    background: rgba(76, 175, 80, 0.15);
    color: var(--success);
}

.setup-status.skipped {
    background: rgba(150, 150, 150, 0.15);
    color: var(--text-muted);
}

.setup-card-body {
    padding: 20px;
}

.setup-card-body p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* ====================================================================
   SUCCESS PAGE
   ==================================================================== */

.success-container {
    max-width: 550px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.success-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(255, 138, 61, 0.3);
}

.success-icon i {
    font-size: 40px;
    color: white;
}

.success-container h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.success-container > p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.success-details {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: left;
    margin-bottom: 30px;
}

.success-details h3 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.success-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.success-row:last-child {
    border-bottom: none;
}

.success-row span:first-child {
    color: var(--text-secondary);
}

/* ====================================================================
   PROCESSING OVERLAY
   ==================================================================== */

.processing-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 11, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.processing-overlay.active {
    opacity: 1;
    visibility: visible;
}

.processing-overlay .spinner {
    width: 50px;
    height: 50px;
    border-width: 3px;
}

.processing-overlay p {
    color: var(--text-primary);
    font-size: 16px;
    margin-top: 20px;
}

/* ====================================================================
   FORM ROW (two columns)
   ==================================================================== */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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

/* Button row */
.btn-row {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.btn-row .btn {
    flex: 1;
}

/* ====================================================================
   2FA MODAL
   ==================================================================== */

.twofa-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 11, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.twofa-overlay.active {
    opacity: 1;
    visibility: visible;
}

.twofa-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 35px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.twofa-modal-header {
    margin-bottom: 25px;
}

.twofa-modal-header i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
}

.twofa-modal-header h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.twofa-modal-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.twofa-inputs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.twofa-inputs input {
    width: 48px;
    height: 58px;
    background: var(--bg-input);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.twofa-inputs input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-input-focus);
}

.twofa-inputs input.filled {
    border-color: var(--success);
}

.twofa-inputs input.error {
    border-color: var(--error);
}

.twofa-error {
    color: var(--error);
    font-size: 13px;
    margin-bottom: 15px;
    min-height: 18px;
}

.twofa-footer {
    display: flex;
    gap: 10px;
}

.twofa-footer .btn {
    flex: 1;
}

/* ====================================================================
   TURNSTILE
   ==================================================================== */

.turnstile-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    min-height: 65px;
}

/* ====================================================================
   STRIPE CARD ELEMENT
   ==================================================================== */

.stripe-element {
    padding: 14px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.stripe-element.StripeElement--focus {
    border-color: var(--border-focus);
    background: var(--bg-input-focus);
}

.stripe-element.StripeElement--invalid {
    border-color: var(--error);
}

.stripe-errors {
    color: var(--error);
    font-size: 12px;
    margin-top: 8px;
    min-height: 18px;
}

/* ====================================================================
   RESPONSIVE
   ==================================================================== */

@media (max-width: 480px) {
    .auth-card {
        border-radius: var(--radius-lg);
    }
    
    .auth-card-header {
        padding: 25px 20px 20px;
    }
    
    .auth-card-body {
        padding: 0 20px 25px;
    }
    
    .auth-card-title {
        font-size: 22px;
    }
    
    .checkout-steps {
        gap: 5px;
    }
    
    .checkout-step-label {
        font-size: 10px;
    }
    
    .twofa-inputs input {
        width: 42px;
        height: 52px;
        font-size: 20px;
    }
}
