 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: Arial, sans-serif;
 }

 body {
     background: #fff;
     min-height: 100vh;
     overflow: auto;
 }

 .header {
     height: 65px;
     padding: 0 32px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     border-bottom: 1px solid #e5e7eb;
     background: #fff;
 }

 .header-left {
     display: flex;
     align-items: center;
     gap: 18px;
 }

 .logo-img {
     height: 32px;
 }

 .brand {
     font-size: 20px;
     font-weight: 700;
 }

 .nav-link {
     text-decoration: none;
     color: #2563eb;
     font-size: 14px;
     font-weight: 500;
 }

 .search-box {
     position: relative;
 }

 .search-box input {
     width: 420px;
     height: 40px;
     padding: 0 14px 0 42px;
     border-radius: 10px;
     border: 1px solid #cbd5e1;
     font-size: 14px;
 }

 .search-icon {
     position: absolute;
     left: 14px;
     top: 50%;
     transform: translateY(-50%);
     width: 18px;
     height: 18px;
 }

 /* RIGHT */
 .header-right {
     display: flex;
     align-items: center;
     gap: 16px;
 }

 /* CART */
 .cart-icon {
     width: 22px;
     height: 22px;
     cursor: pointer;
 }

 /* BUTTONS */
 .btn-login {
     display: inline-block;
     height: 38px;
     padding: 0 22px;
     border-radius: 10px;
     border: 2px solid #2a0b2f;
     background: #fff;
     color: #2a0b2f;
     font-weight: 600;
     font-size: 15px;
     text-align: center;
     line-height: 38px;
     box-shadow: 0 2px 8px rgba(44, 0, 60, 0.08);
     cursor: pointer;
     text-decoration: none;
     transition: background 0.3s, box-shadow 0.3s, color 0.2s, border 0.2s;
 }

 .btn-login:hover {
     background: linear-gradient(90deg, #f3eaff, #2a0b2f);
     color: #160018;
     border-color: #fff;
     box-shadow: 0 4px 16px rgba(44, 0, 60, 0.15);
     text-decoration: underline;
 }

 .btn-signup {
     display: inline-block;
     height: 38px;
     padding: 0 24px;
     border-radius: 10px;
     border: none;
     background: linear-gradient(90deg, #160018, #2a0b2f);
     color: #fff;
     font-weight: 600;
     font-size: 15px;
     text-align: center;
     line-height: 38px;
     box-shadow: 0 2px 8px rgba(44, 0, 60, 0.12);
     cursor: pointer;
     text-decoration: none;
     transition: background 0.3s, box-shadow 0.3s, color 0.2s;
 }

 .btn-signup:hover {
     background: linear-gradient(90deg, #2a0b2f, #fff);
     color: #160018;
     box-shadow: 0 4px 16px rgba(44, 0, 60, 0.18);
     text-decoration: underline;
 }



 .container {
     display: flex;
     height: calc(100vh - 70px);
 }

 .image-box {
     width: 50%;
     height: 100%;
     overflow: hidden;
 }

 .image-box img {
     width: 100%;
     height: 100%;
     object-position: center;
 }

 .form-box {
     width: 50%;
     height: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .form-inner {
     width: 520px;
 }

 .form-inner h2 {
     font-size: 26px;
     margin-bottom: 30px;
 }

 .form-group {
     margin-bottom: 16px;
 }

 .form-group label {
     display: block;
     font-size: 14px;
     margin-bottom: 6px;
     font-weight: 600;
 }

 .form-group input {
     width: 100%;
     padding: 12px 14px;
     border-radius: 10px;
     border: 1px solid #e3e3e3;
 }

 .row {
     display: flex;
     gap: 20px;
 }

 .btn-create {
     margin-top: 10px;
     padding: 14px;
     width: 220px;
     display: inline-block;
     text-align: center;
     text-decoration: none;
     background: linear-gradient(90deg, #160018, #2a0b2f);
     color: #fff;
     border: none;
     border-radius: 10px;
     cursor: pointer;
     font-size: 15px;
     transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
     box-shadow: 0 2px 8px rgba(44, 0, 60, 0.12);
     line-height: 1;
 }

 .btn-create:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 24px rgba(44, 0, 60, 0.16);
     opacity: 0.98;
 }

 .btn-create:focus-visible {
     outline: 3px solid rgba(37, 99, 235, 0.18);
     outline-offset: 3px;
     border-radius: 10px;
 }

 .btn-create[disabled] {
     opacity: 0.6;
     cursor: not-allowed;
     transform: none;
     box-shadow: none;
 }

 .form-message {
     margin-top: 10px;
     color: #d63333;
     min-height: 20px;
     font-size: 14px;
 }

 /* DIVIDER */
 .divider {
     margin: 26px 0;
     display: flex;
     align-items: center;
     gap: 12px;
     color: #999;
     font-size: 14px;
 }

 .divider::before,
 .divider::after {
     content: "";
     flex: 1;
     height: 1px;
     background: #e3e3e3;
 }

 /* SOCIAL BUTTONS */
 .social {
     display: flex;
     gap: 20px;
 }

 .social-btn {
     flex: 1;
     height: 44px;
     border-radius: 10px;
     border: 1px solid #e3e3e3;
     background: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     cursor: pointer;
     font-size: 14px;
     font-weight: 500;
 }

 /* ICON */
 .social-btn img {
     width: 18px;
     height: 18px;
 }

 /* OPTIONAL HOVER */
 .social-btn:hover {
     background: #f9fafb;
     border-color: #cbd5e1;
 }

 @media (max-width: 992px) {
     .search-box input {
         width: 240px;
     }

     .form-inner {
         width: 420px;
     }
 }

 @media (max-width: 768px) {
     .header {
         padding: 12px 16px;
         flex-direction: column;
         align-items: stretch;
         height: auto;
         gap: 12px;
     }

     .header-left {
         display: flex;
         align-items: center;
         justify-content: space-between;
         gap: 8px;
         width: 100%;
     }

     .search-box {
         display: none;
     }

     .header-right {
         width: 100%;
         display: flex;
         justify-content: flex-end;
         gap: 8px;
     }

     .container {
         flex-direction: column;
         height: auto;
     }

     .image-box,
     .form-box {
         width: 100%;
     }

     .form-inner {
         width: 100%;
         padding: 20px;
     }

     .image-box {
         height: 260px;
     }

     .image-box img {
         height: 100%;
         object-fit: cover;
     }

     .social {
         flex-direction: column;
     }

     .social-btn {
         width: 100%;
     }

     .btn-create {
         width: 100%;
     }
 }

 @media (max-width: 480px) {
     .brand {
         font-size: 18px;
     }

     .logo-img {
         height: 28px;
     }

     .btn-create {
         padding: 12px;
     }

     .social-btn {
         padding: 12px;
     }
 }