body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f7ff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
}

/* ===== Neural Canvas Background ===== */
#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at 50% 50%, #f0f8ff 0%, #dbeafe 100%);
}

/* ===== Split Layout ===== */
.login-split-wrapper {
    display: flex;
    width: 100%;
    max-width: 1100px;
    min-height: 640px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    margin: 20px;
    position: relative;
    z-index: 10;
}

/* LEFT PANEL - Login Form */
.login-left-panel {
    flex: 0 0 440px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-left-panel .auth-container {
    max-width: 360px;
    width: 100%;
    padding: 32px 40px 40px;
    box-shadow: none;
    border-radius: 0;
    text-align: left;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
}

.login-left-panel .logo-container {
    margin-bottom: 24px;
    text-align: left;
}

.login-left-panel .logo-container img {
    height: 34px;
}

.login-greeting {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0072CE;
    margin: 0 0 6px 0;
}

.login-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 24px 0;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

/* ===== Login Form Fields ===== */
.login-field {
    margin-bottom: 18px;
    text-align: left;
}

.login-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 7px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.login-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}

.login-label-row label {
    margin-bottom: 0;
}

.forgot-link {
    font-size: 0.78rem;
    color: #0072CE;
    text-decoration: none;
    font-weight: 500;
    text-transform: none;
}

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

.login-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input-wrap {
    position: relative;
}

.login-input-wrap input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 0;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    box-sizing: border-box;
    font-size: 0.93rem;
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    background: #fff;
    transition: all 0.25s ease;
}

.login-input-wrap input::placeholder {
    color: #b0bec5;
    font-weight: 400;
}

.login-input-wrap input:focus {
    border-color: #0072CE;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 114, 206, 0.08);
    outline: none;
}

.login-input-wrap input:hover:not(:focus) {
    border-color: #cbd5e1;
    background: #fafbff;
}

.login-input-wrap input {
    padding-right: 40px;
}

.login-input-wrap.password-wrap input {
    padding-right: 76px;
}

.login-action-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    box-shadow: none;
}

.login-action-btn:hover {
    color: #475569;
    background: #f1f5f9;
    transform: translateY(-50%);
    box-shadow: none;
}

.login-action-btn svg {
    display: block;
}

/* Password field: copy at right:38px, eye at right:6px */
.password-wrap .login-action-btn:first-of-type {
    right: 38px;
}

.password-wrap .login-action-btn:last-of-type {
    right: 6px;
}

/* ===== Login Button ===== */
.login-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #0072CE 0%, #004ecb 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 114, 206, 0.3);
    margin-top: 6px;
    letter-spacing: 0.2px;
}

.login-btn:hover {
    background: linear-gradient(135deg, #005bb5 0%, #003a99 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 114, 206, 0.35);
}

.login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 114, 206, 0.2);
}

.login-btn svg {
    transition: transform 0.3s ease;
}

.login-btn:hover svg {
    transform: translateX(4px);
}

/* ===== Social Buttons Side-by-Side ===== */
.social-login-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-login-row .social-btn {
    flex: 1;
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    color: #334155;
    transition: all 0.25s ease;
    gap: 8px;
}

.social-login-row .social-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.login-left-panel .separator {
    color: #94a3b8;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 24px 0 20px;
}

.login-left-panel .text-link {
    text-align: center;
    margin-top: 28px;
    font-size: 0.88rem;
    color: #64748b;
}

.login-left-panel .text-link a {
    color: #0072CE;
    font-weight: 600;
}

/* RIGHT PANEL - Trust & Value */
.login-right-panel {
    flex: 1;
    background: linear-gradient(145deg, #0072CE 0%, #004ecb 50%, #003a99 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.login-right-panel::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    animation: bgPulse 8s ease-in-out infinite;
}

.login-right-panel::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    animation: bgPulse 10s ease-in-out infinite reverse;
}

@keyframes bgPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.6; }
}

/* ===== Floating Background Icons ===== */
.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.float-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.07);
    animation: floatDrift linear infinite;
}

.float-1 { top: 8%; left: 10%; animation-duration: 18s; animation-delay: 0s; }
.float-2 { top: 65%; right: 8%; animation-duration: 22s; animation-delay: -4s; }
.float-3 { top: 30%; right: 15%; animation-duration: 20s; animation-delay: -8s; }
.float-4 { bottom: 15%; left: 20%; animation-duration: 16s; animation-delay: -2s; }
.float-5 { top: 12%; right: 30%; animation-duration: 24s; animation-delay: -6s; }
.float-6 { bottom: 30%; right: 25%; animation-duration: 19s; animation-delay: -10s; }

@keyframes floatDrift {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.07; }
    25% { transform: translateY(-18px) rotate(8deg); opacity: 0.12; }
    50% { transform: translateY(-6px) rotate(-5deg); opacity: 0.07; }
    75% { transform: translateY(-22px) rotate(6deg); opacity: 0.1; }
    100% { transform: translateY(0) rotate(0deg); opacity: 0.07; }
}

/* ===== Staggered Slide-In Animation ===== */
.anim-slide-in {
    opacity: 0;
    transform: translateY(24px);
    animation: slideInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes slideInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Icon Pulse Glow ===== */
.icon-pulse {
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    50% { box-shadow: 0 0 16px 4px rgba(255, 255, 255, 0.15); }
}

.trust-panel-content {
    position: relative;
    z-index: 1;
    max-width: 460px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge svg {
    flex-shrink: 0;
    animation: badgeShield 2s ease-in-out infinite;
}

@keyframes badgeShield {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.trust-headline {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 16px 0;
    letter-spacing: -0.3px;
}

.trust-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 36px 0;
}

/* Feature Items */
.trust-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 36px;
}

.trust-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease;
}

.trust-feature-item:hover {
    transform: translateX(6px);
}

.trust-feature-item:hover .trust-feature-icon {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.trust-feature-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-feature-emoji {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-feature-item:hover .trust-feature-emoji {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.12);
}

.trust-feature-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.trust-feature-text strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.trust-feature-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Guarantee Footer */
.trust-guarantee {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.trust-guarantee:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.guarantee-icon-wrap {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(74, 222, 128, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    animation: lockPulse 3s ease-in-out infinite;
}

@keyframes lockPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
    50% { box-shadow: 0 0 12px 4px rgba(74, 222, 128, 0.2); }
}

.trust-guarantee svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.8);
}

.trust-guarantee span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* ===== Original Auth Styles ===== */
.auth-container {
    max-width: 420px;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.9);
    text-align: center;
    position: relative;
    z-index: 10;
}

.logo-container {
    margin-bottom: 25px;
}

.logo-container img {
    height: 50px;
    width: auto;
}

h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 1.8em;
    font-weight: 600;
}

.input-container {
  position: relative;
  width: 100%;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: #666;
    margin: 20px 0;
    font-size: 14px;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.separator::before {
    margin-right: 10px;
}

.separator::after {
    margin-left: 10px;
}

.social-login-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    transition: background-color 0.3s;
}

.social-btn:hover {
    background-color: #f5f5f5;
}

.social-btn img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus {
    border-color: #0072CE;
    box-shadow: 0 0 0 0.2rem rgba(0, 114, 206, 0.25);
    outline: none;
}

button {
    width: 100%;
    padding: 14px;
    background-color: #0072CE;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-family: 'Inter', sans-serif;
}

button:hover {
    background-color: #005bb5;
    transform: translateY(-1px);
}

.text-link {
    text-align: center;
    margin-top: 25px;
    font-size: 0.95em;
}

.text-link a {
    color: #0072CE;
    text-decoration: none;
    font-weight: 500;
}

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


.forgot-password-link {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 25px;
    font-size: 0.9em;
}

.forgot-password-link a {
    color: #0072CE;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password-link a:hover {
    text-decoration: underline;
}


.message {
    font-size: 0.9em;
    text-align: center;
    margin-bottom: 15px;
    padding: 8px;
    border-radius: 6px;
    display: none;
}

.error-message {
    color: #c0392b;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.success-message {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}


select.styled-select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    box-sizing: border-box;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 1em;
    font-family: 'Inter', sans-serif;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    color: #333;
}

select.styled-select:invalid {
    color: #6c757d;
}


.button-group {
    margin-top: 10px;
}

.button-group button {
    margin-bottom: 10px;
}

button.secondary {
    background-color: #6c757d;
}

button.secondary:hover {
    background-color: #5a6268;
}

.password-container {
  position: relative;
}

.password-container input[type="password"],
.password-container input[type="text"] {
    padding-right: 80px;
}

.input-container input[type="email"] {
    padding-right: 45px;
}

.toggle-password-icon,
.copy-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
  width: 20px;
  height: 20px;
  margin-top: -9px;
}

.toggle-password-icon {
  right: 50px;
}

.copy-icon {
    right: 15px;
}

.toggle-password-icon:hover,
.copy-icon:hover {
    color: #333;
}

.toggle-password-icon svg,
.copy-icon svg {
    width: 100%;
    height: 100%;
}

/* ===== Shared Auth Page Card (signup, forgot, reset, verify) ===== */
.auth-page-card {
    max-width: 440px;
    width: 90%;
    padding: 36px 38px;
    text-align: left;
    animation: cardFadeIn 0.5s ease forwards;
    opacity: 0;
}

@keyframes cardFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.auth-page-card .logo-container {
    margin-bottom: 28px;
    text-align: left;
}

.auth-page-card .logo-container img {
    height: 34px;
}

.auth-page-card .login-greeting {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0072CE;
    margin: 0 0 6px 0;
}

.auth-page-card .login-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

.auth-desc {
    color: #64748b;
    font-size: 0.88rem;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.auth-page-card .login-field {
    margin-bottom: 18px;
    text-align: left;
}

.auth-page-card .login-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 7px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.auth-page-card .login-btn {
    margin-top: 6px;
    margin-bottom: 0;
}

.auth-page-card .text-link {
    text-align: center;
    margin-top: 24px;
    font-size: 0.88rem;
    color: #64748b;
}

.auth-page-card .text-link a {
    color: #0072CE;
    font-weight: 600;
}

.auth-page-card .step-indicator {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0072CE;
    margin-bottom: 8px;
    text-align: left;
}

.auth-page-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
    letter-spacing: -0.3px;
    line-height: 1.25;
    text-align: left;
}

.auth-page-card p.subtext {
    color: #64748b;
    font-size: 0.88rem;
    margin: 0 0 22px 0;
    text-align: left;
}

.auth-page-card input[type="text"],
.auth-page-card input[type="email"],
.auth-page-card input[type="password"] {
    padding: 13px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.93rem;
    background: #fff;
    transition: all 0.25s ease;
}

.auth-page-card input:focus {
    border-color: #0072CE;
    box-shadow: 0 0 0 4px rgba(0, 114, 206, 0.08);
}

.auth-page-card input:hover:not(:focus) {
    border-color: #cbd5e1;
}

.auth-page-card select.styled-select {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 13px 16px;
    background-color: #fff;
    transition: all 0.25s ease;
}

.auth-page-card select.styled-select:focus {
    border-color: #0072CE;
    box-shadow: 0 0 0 4px rgba(0, 114, 206, 0.08);
}

.auth-page-card button.primary,
.auth-page-card button[class="primary"] {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #0072CE 0%, #004ecb 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 14px rgba(0, 114, 206, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.auth-page-card button.primary:hover {
    background: linear-gradient(135deg, #005bb5 0%, #003a99 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 114, 206, 0.35);
}

.auth-page-card button.secondary {
    width: 100%;
    padding: 12px 20px;
    background: #fff;
    color: #334155;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s ease;
}

.auth-page-card button.secondary:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.auth-page-card .highlight-bar {
    width: 50px;
    height: 4px;
    background: linear-gradient(135deg, #0072CE, #004ecb);
    margin: 0 0 16px 0;
    border-radius: 3px;
}

.auth-page-card .password-wrapper {
    position: relative;
    margin-bottom: 14px;
}

.auth-page-card .password-wrapper input {
    padding-right: 44px;
}

.auth-page-card .toggle-password-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #94a3b8;
    display: flex;
    align-items: center;
    z-index: 5;
}

.auth-page-card .toggle-password-icon:hover {
    color: #475569;
}

.auth-page-card .toggle-password-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.auth-page-card #password-rules {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    text-align: left;
    font-size: 0.82rem;
}

.auth-page-card #password-rules li {
    margin-bottom: 4px;
    color: #dc3545;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.auth-page-card #password-rules li::before {
    content: "\2022";
    font-size: 1.1em;
}

.auth-page-card #password-rules li.met {
    color: #22c55e;
}

.auth-page-card .button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

/* Verify email page */
.verify-card {
    text-align: center;
}

.verify-card .status-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
}

.verify-card .success { color: #22c55e; }
.verify-card .error { color: #ef4444; }

.verify-card h2 {
    text-align: center;
    margin-bottom: 10px;
}

.verify-card p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 22px;
    text-align: center;
    font-size: 0.9rem;
}

/* ===== Responsive - Mobile ===== */
@media (max-width: 900px) {
    body {
        padding: 0;
        background-color: #fff;
    }

    .login-split-wrapper {
        flex-direction: column;
        max-width: 100%;
        min-height: auto;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
    }

    .login-left-panel {
        flex: none;
        order: 1;
        padding: 16px;
    }

    .login-left-panel .auth-container {
        padding: 28px 20px;
        text-align: left;
    }

    .login-left-panel .logo-container {
        text-align: left;
    }

    .login-right-panel {
        flex: none;
        order: 2;
        padding: 36px 24px;
    }

    .trust-headline {
        font-size: 1.5rem;
    }

    .trust-features {
        gap: 16px;
    }

    .floating-icons {
        display: none;
    }
}

@media (max-width: 480px) {
    .login-left-panel .auth-container {
        padding: 24px 16px;
        text-align: left;
    }

    .trust-headline {
        font-size: 1.3rem;
    }

    .trust-feature-text strong {
        font-size: 0.88rem;
    }

    .trust-feature-text span {
        font-size: 0.8rem;
    }
}
