 .auth-layout {
     display: flex;
     min-height: 100vh;
     width: 100%;
 }

 .auth-form-side {
     flex: 1;
     padding: 40px 60px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     background: white;
     max-width: 600px;
 }

 .auth-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 60px;
 }

 .back-link {
     font-size: 14px;
     color: var(--text-gray);
     font-weight: 500;
 }

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

 .auth-content h1 {
     font-size: 32px;
     margin-bottom: 10px;
     color: var(--dark);
 }

 .auth-content p {
     color: var(--text-gray);
     margin-bottom: 30px;
 }

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

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     font-size: 14px;
     color: var(--dark);
 }

 .form-input {
     width: 100%;
     padding: 14px 20px;
     border: 1px solid #E5E7EB;
     border-radius: 12px;
     font-size: 15px;
     outline: none;
     transition: 0.3s;
     background: #F9FAFB;
 }

 .form-input:focus {
     border-color: var(--primary);
     background: white;
     box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
 }

 .forgot-pass {
     display: block;
     text-align: right;
     font-size: 13px;
     color: var(--primary);
     font-weight: 600;
     margin-top: 8px;
 }

 .btn-block {
     width: 100%;
     padding: 14px;
     font-size: 16px;
     margin-top: 10px;
 }

 .auth-divider {
     text-align: center;
     margin: 30px 0;
     position: relative;
 }

 .auth-divider::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 0;
     right: 0;
     height: 1px;
     background: #E5E7EB;
 }

 .auth-divider span {
     background: white;
     padding: 0 15px;
     position: relative;
     color: var(--text-gray);
     font-size: 13px;
 }

 .social-btns {
     display: flex;
     gap: 15px;
 }

 .btn-social {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 12px;
     background: white;
     border: 1px solid #E5E7EB;
     border-radius: 12px;
     font-weight: 600;
     color: var(--dark);
     cursor: pointer;
     transition: 0.3s;
 }

 .btn-social:hover {
     background: #F9FAFB;
     border-color: #D1D5DB;
 }

 .auth-footer {
     text-align: center;
     margin-top: 30px;
     font-size: 14px;
 }

 .auth-footer a {
     color: var(--primary);
     font-weight: 700;
 }

 .auth-visual-side {
     flex: 1;
     background: radial-gradient(circle at bottom left, #4F46E5 0%, #111827 100%);
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
 }

 .auth-blob {
     position: absolute;
     width: 600px;
     height: 600px;
     background: rgba(79, 70, 229, 0.4);
     filter: blur(80px);
     border-radius: 50%;
     top: -100px;
     right: -100px;
 }

 .visual-content {
     position: relative;
     z-index: 2;
     text-align: center;
 }

 .glass-card {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(12px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     padding: 40px;
     border-radius: 24px;
     color: white;
     max-width: 350px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
     animation: float 6s infinite ease-in-out;
 }

 .glass-card h3 {
     font-size: 24px;
     margin-bottom: 10px;
 }

 .glass-card p {
     opacity: 0.9;
 }

 .glass-card .icon-box {
     margin: 0 auto 20px;
     background: rgba(255, 255, 255, 0.2);
     color: white;
 }

 @media (max-width: 900px) {
     .auth-visual-side {
         display: none;
     }

     .auth-form-side {
         max-width: 100%;
         padding: 30px;
     }
 }

 .form-input.error {
     border-color: #EF4444;
     background-color: #FEF2F2;
 }

 .form-input.error:focus {
     box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
 }

 .error-msg {
     color: #EF4444;
     font-size: 13px;
     margin-top: 6px;
     font-weight: 500;
     display: none;
     animation: slideDown 0.2s ease-out;
 }

 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateY(-5px);
     }

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