 * {
     box-sizing: border-box;
 }

 body,
 html {
     margin: 0;
     padding: 0;
     width: 100%;
     height: 100%;
     min-height: 100svh;
     font-family: 'Inter', sans-serif;
     background-color: white;
 }

 .auth-container {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     width: 100%;
     height: 100%;
     padding: var(--spacing-6, 24px);
     gap: var(--spacing-6, 24px);
 }

 .left-side,
 .main-side {
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .left-side {
     display: flex;
     align-items: center;
     justify-content: center;
     background: url('../images/auth/background.webp') no-repeat center center;
     background-size: cover;
     border-radius: 32px;
     position: relative;
     width: 100%;
     height: calc(100vh - 48px);
     margin: 0;
     padding: 0;
 }

 .logo-wrapper {
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .logo-wrapper img {
     max-width: 90%;
     height: auto;
     display: block;
 }

 p {
     margin: 0 !important;
 }

 button {
     height: 52px;
 }

 .auth-form-container {
     min-width: 480px;
     padding: 24px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     background: white;
     gap: 16px;
 }

 .form_auth {
     display: flex;
     flex-direction: column;
     gap: 12px;
     justify-content: center;
 }

 .original-logo-container {
     margin-bottom: 36px;
     display: flex;
     justify-content: center;
 }

 .form-title {
     font-size: 28px;
     line-height: 40px;
     font-weight: 700;
     color: #292929;
 }

 .form-subtitle {
     font-size: 16px;
     line-height: 24px;
     font-weight: 500;
     color: #7C7C7C;
 }

 .forgot-password {
     text-align: right;
     font-size: 16px;
     font-weight: 500;
     line-height: 24px;
 }

 .forgot-password a {
     color: #BDBDBD;
     text-decoration: none;
 }

 .forgot-password a:hover {
     color: #1C6EF3;
     text-decoration: underline;
 }

 .submit-btn {
     background-color: #1C6EF3;
     color: #fff;
     border: none !important;
     border-radius: 8px;
     padding: 8px 16px;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 16px;
     font-weight: 600;
     line-height: 24px;
     cursor: pointer;
 }

 .submit-btn:hover {
     color: #fff;
 }

 .divider {
     display: flex;
     align-items: center;
     text-align: center;
     color: #BDBDBD;
     font-size: 16px;
     font-weight: 500;
     line-height: 24px;
 }

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

 .divider span {
     padding: 0 16px;
 }

 .social-login {
     display: flex;
     flex-direction: column;
     gap: 12px;
     width: 100%;
 }

 .btn-social {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 4px;
     border-radius: 8px;
     padding: 8px 16px;
     font-size: 14px;
     font-weight: 500;
     line-height: 20px;
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .btn-facebook {
     background-color: #1877F2;
     color: #fff;
 }

 .btn-facebook:hover {
     background-color: #1877F2;
     color: #fff;
 }

 .btn-google {
     background-color: #fff;
     color: #000;
     border: 1px solid #DCDCDC;
 }

 .btn-google:hover {
     background-color: #fff;
     color: #000;
     border: 1px solid #DCDCDC;
 }

 .btn-apple {
     background-color: #000;
     color: #fff;
 }

 .btn-apple:hover {
     background-color: #000;
     color: #fff;
 }

 .btn-social img {
     width: 20px;
     height: 20px;
     object-fit: contain;
 }

 .auth-footer {
     text-align: center;
     color: #BDBDBD;
     font-size: 16px;
     font-weight: 500;
     line-height: 24px;
 }

 .auth-footer a {
     color: #1C6EF3;
     text-decoration: none;
 }

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

 /* Responsive */
 @media (max-width: 768px) {
     .auth-form-container {
         padding: 12px 0;
         min-width: calc(100vw - 48px);
     }

     .main-side {
         width: 100%;
         padding: 0;
     }

     .original-logo {
         margin-bottom: 16px;
     }

     .social-login span {
         display: none;
     }
 }

 @media (max-width: 992px) {


     .left-side {
         display: none;
         /* Hide on mobile */
     }
 }