 .auth-page {
     min-height: 100vh;
     display: grid;
     grid-template-columns: 1fr 1fr;
 }

 .auth-left {
     background: var(--surface, #0d1117);
     border-right: 1px solid var(--border);
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     padding: 2.5rem;
     position: relative;
     overflow: hidden;
 }

 .auth-left::before {
     content: '';
     position: absolute;
     width: 500px;
     height: 500px;
     bottom: -150px;
     left: -100px;
     background: radial-gradient(ellipse, rgba(79, 142, 255, 0.12) 0%, transparent 65%);
     pointer-events: none;
 }

 .auth-left::after {
     content: '';
     position: absolute;
     width: 300px;
     height: 300px;
     top: 100px;
     right: -80px;
     background: radial-gradient(ellipse, rgba(167, 139, 250, 0.1) 0%, transparent 65%);
     pointer-events: none;
 }

 .auth-left-top,
 .auth-left-bottom {
     position: relative;
     z-index: 1;
 }

 .auth-tagline {
     font-family: 'Syne', sans-serif;
     font-size: clamp(1.8rem, 3vw, 2.6rem);
     font-weight: 800;
     letter-spacing: -1.5px;
     line-height: 1.15;
     margin-top: 4rem;
 }

 .auth-tagline .grad {
     background: linear-gradient(135deg, #4f8eff, #a78bfa);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .auth-quote {
     margin-top: 3rem;
     padding: 1.5rem;
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid var(--border);
     border-radius: 24px;
 }

 .auth-quote p {
     font-size: 0.9rem;
     color: var(--muted2, #6b7280);
     font-style: italic;
     line-height: 1.7;
     margin-bottom: 1rem;
 }

 .auth-quote-author {
     display: flex;
     align-items: center;
     gap: 0.8rem;
 }

 .quote-avatar {
     width: 34px;
     height: 34px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--accent, #4f8eff), var(--accent2, #a78bfa));
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.7rem;
     font-weight: 700;
     color: #fff;
 }

 .quote-name {
     font-size: 0.85rem;
     font-weight: 600;
     color: #fff;
 }

 .quote-role {
     font-size: 0.75rem;
     color: var(--muted, #9aa4b2);
 }

 .auth-right {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     padding: 3rem 2.5rem;
     background: var(--bg, #0b0f1a);
 }

 .auth-form-wrap {
     width: 100%;
     max-width: 400px;
     animation: fadeUp 0.6s ease both;
 }

 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(20px)
     }

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

 .auth-form-header {
     text-align: center;
     margin-bottom: 2.5rem;
 }

 .auth-form-header .logo {
     font-size: 1.4rem;
     display: inline-block;
     margin-bottom: 1.5rem;
 }

 .auth-form-header h2 {
     font-family: 'Syne', sans-serif;
     font-size: 1.7rem;
     font-weight: 800;
     letter-spacing: -1px;
     margin-bottom: 0.4rem;
 }

 .auth-form-header p {
     color: var(--muted, #9aa4b2);
     font-size: 0.88rem;
 }

 .social-btns {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 0.75rem;
     margin-bottom: 1.5rem;
 }

 .social-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.6rem;
     padding: 0.7rem;
     border: 1px solid var(--border);
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.04);
     color: var(--muted, #9aa4b2);
     font-size: 0.85rem;
     font-family: 'DM Sans', sans-serif;
     cursor: pointer;
     transition: all 0.2s;
 }

 .social-btn:hover {
     border-color: rgba(255, 255, 255, 0.22);
     color: #fff;
     background: rgba(255, 255, 255, 0.08);
 }

 .divider {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1.5rem;
 }

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

 .divider span {
     font-size: 0.75rem;
     color: var(--muted, #9aa4b2);
     white-space: nowrap;
 }

 .form-group {
     margin-bottom: 1.1rem;
     position: relative;
 }

 .form-group label {
     display: block;
     font-size: 0.82rem;
     font-weight: 500;
     color: var(--muted, #9aa4b2);
     margin-bottom: 0.45rem;
 }

 .form-group input {
     width: 100%;
     padding: 0.8rem 1rem;
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid var(--border);
     border-radius: 8px;
     color: #fff;
     font-size: 0.9rem;
     font-family: 'DM Sans', sans-serif;
     outline: none;
     transition: border-color 0.2s, box-shadow 0.2s;
 }

 .form-group input::placeholder {
     color: var(--muted2, #6b7280);
 }

 .form-group input:focus {
     border-color: #4f8eff;
     box-shadow: 0 0 0 3px rgba(79, 142, 255, 0.12);
 }

 .pw-wrap {
     position: relative;
 }

 .pw-wrap input {
     padding-right: 3rem;
 }

 .pw-toggle {
     position: absolute;
     right: 0.8rem;
     top: 50%;
     transform: translateY(-50%);
     background: none;
     border: none;
     cursor: pointer;
     font-size: 1rem;
     color: var(--muted, #9aa4b2);
     padding: 0.2rem;
 }

 .form-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1.5rem;
 }

 .remember-me {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     font-size: 0.82rem;
     color: var(--muted, #9aa4b2);
     cursor: pointer;
 }

 .remember-me input[type="checkbox"] {
     width: 15px;
     height: 15px;
     accent-color: #4f8eff;
     cursor: pointer;
 }

 .forgot-link {
     font-size: 0.82rem;
     color: #4f8eff;
     text-decoration: none;
     transition: opacity 0.2s;
 }

 .forgot-link:hover {
     opacity: 0.75;
 }

 .submit-btn {
     width: 100%;
     padding: 0.9rem;
     background: linear-gradient(135deg, #4f8eff, #a78bfa);
     border: none;
     border-radius: 8px;
     color: #fff;
     font-size: 0.95rem;
     font-weight: 600;
     font-family: 'DM Sans', sans-serif;
     cursor: pointer;
     transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
     box-shadow: 0 4px 20px rgba(79, 142, 255, 0.3);
 }

 .submit-btn:hover {
     opacity: 0.9;
     transform: translateY(-1px);
     box-shadow: 0 8px 28px rgba(79, 142, 255, 0.4);
 }

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

 .auth-switch {
     text-align: center;
     margin-top: 1.5rem;
     font-size: 0.85rem;
     color: var(--muted, #9aa4b2);
 }

 .auth-switch a {
     color: #4f8eff;
     text-decoration: none;
     font-weight: 500;
 }

 .auth-switch a:hover {
     text-decoration: underline;
 }

 @media(max-width:768px) {
     .auth-page {
         grid-template-columns: 1fr
     }

     .auth-left {
         display: none
     }

     .auth-right {
         padding: 2rem 1.5rem
     }
 }