
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        background-color: #f8f5f0;
        min-height: 100vh;
      }

      .login-container {
        display: flex;
        min-height: 100vh;
        background-color: #f8f5f0;
      }

      /* Header */
      .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background-color: #f8f5f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 32px;
        z-index: 100;
      }

      .logo {
        font-size: 20.4px;
        font-weight: 700;
        color: #4b3621;
        letter-spacing: 0.5px;
      }

      .login-btn-header { 
        background-color: #c8a97e;
        color: #ffffff;
        border: none;
        border-radius: 9999px;
        padding: 10px 24px;
        font-size: 13.6px;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }

      .login-btn-header:hover {
        background-color: #b89968;
      }

      /* Main Content */
      .main-content {
        display: flex;
        width: 100%;
        margin-top: 80px; 
      }

      /* Left Side - Image */
      .image-section {
        width: 50%;
        min-height: calc(100vh - 80px);
        background: url('https://c.animaapp.com/mhzywr4pbmHB4M/img/container.png') center center / cover; 
        position: relative;
      }

      .image-overlay {
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2);
      }

      /* Right Side - Form */
      .form-section {
        width: 50%;
        min-height: calc(100vh - 80px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        background-color: #f8f5f0;
      }

      .login-card {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 40px;
        width: 100%;
        max-width: 382px;
        box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
      }

      .login-title {
        font-size: 25.5px;
        font-weight: 700;
        color: #4b3621;
        margin-bottom: 8px;
      }

      .login-subtitle {
        font-size: 13.6px;
        color: #4b5563;
        margin-bottom: 32px;
      }

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

      .form-label {
        display: block;
        font-size: 11.9px;
        font-weight: 500;
        color: #4b3621;
        margin-bottom: 8px;
      }

      .form-input {
        width: 100%;
        padding: 12px 16px;
        background-color: #e3d3be; 
        border: none;
        border-radius: 8px;
        font-size: 16px;
        color: #4b3621;
        outline: none;
        transition: background-color 0.3s ease;
      }

      .form-input:focus {
          background-color: #d1c5b8;
      }

      .form-input::placeholder {
        color: #7b6d5c;
      }

      .password-wrapper {
        position: relative;
      }

      .password-wrapper input {
        padding-right: 45px;
      }

      /* Password Toggle Button */
      .toggle-password {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        display: flex;
        align-items: center;
        transition: opacity 0.2s ease;
      }

      .toggle-password:hover {
        opacity: 0.7;
      }
      
      /* --- BUTTONS --- */

      /* Primary Button (Sign Up) */
      .login-btn {
        width: 100%;
        padding: 14px;
        background-color: #c8a97e;
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-size: 13.6px;
        font-weight: 500;
        cursor: pointer;
        margin-top: 40px;
        transition: background-color 0.3s ease;
      }

      .login-btn:hover {
        background-color: #b89968;
      }
      
      /* Secondary Button (Referral Code) */
      .secondary-button-alt {
        width: 100%;
        padding: 12px;
        background-color: #f8f5f0;
        color: #c8a97e;
        border: 1px solid #c8a97e;
        border-radius: 8px;
        font-size: 13.6px;
        font-weight: 500;
        cursor: pointer;
        margin-top: 8px;
        transition: background-color 0.3s ease;
      }
      
      .secondary-button-alt:hover {
          background-color: #fff;
          color: #b89968;
          border-color: #b89968;
      }

      /* Google Button */
      .google-btn {
        width: 100%;
        padding: 14px;
        background-color: #ffffff; 
        color: #4b3621;
        border: 1px solid #e3d3be;
        border-radius: 8px;
        font-size: 13.6px;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        transition: border-color 0.3s ease, background-color 0.3s ease;
        margin-bottom: 24px;
      }

      .google-btn:hover {
        background-color: #f8f8f8;
        border-color: #c8a97e;
      }

      .google-btn img {
        width: 20px;
        height: 20px;
      }

      /* Divider (OR Separator) */
      .divider {
          position: relative;
          text-align: center;
          margin: 24px 0;
          width: 100%;
          font-size: 11.9px;
          color: #4b5563;
      }

      .divider span {
          position: relative;
          display: inline-block;
          padding: 0 10px;
          background-color: #ffffff; /* White background to cover line */
          font-weight: 500;
          z-index: 2;
      }
      
      .divider::before {
          content: '';
          position: absolute;
          top: 50%;
          left: 0;
          width: 100%;
          height: 1px;
          background-color: #e3d3be; /* Light tan divider line */
          z-index: 1;
      }

      .signup-link {
        text-align: center;
        margin-top: 8px;
        font-size: 11.9px;
        color: #4b5563;
      }

      .signup-link a {
        color: #c8a97e;
        font-weight: 500;
        text-decoration: underline;
        cursor: pointer;
      }

      .signup-link a:hover {
        color: #b89968;
      }

      /* Responsive Design */
      @media (max-width: 1024px) {
        .image-section {
          width: 40%;
        }
        
        .form-section {
          width: 60%;
        }
      }

      @media (max-width: 768px) {
        .image-section {
          display: none;
        }
        
        .form-section {
          width: 100%;
        }
        
        .header {
          padding: 0 20px;
        }
        
        .login-card {
          margin: 0 20px;
        }
      }

      @media (max-width: 480px) {
        .login-card {
          border-radius: 0;
          box-shadow: none;
          margin: 0;
          padding: 30px 20px;
        }
      }
