.login-container {
      display: flex;
      width: 95%;
      max-width: 1000px;
      min-height: 600px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      overflow: hidden;
      background-color: white;
      margin: 0 auto;
    }
    .login-left {
      flex: 1;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: white;
    }
    .login-right {
      flex: 1;
      background: linear-gradient(135deg, #6e8efb, #a777e3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      padding: 40px;
      text-align: center;
    }

    .login-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .form-group input {
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 16px;
    }
    .signin-btn {
      background-color: #4a6bff;
      color: white;
      border: none;
      padding: 10px;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
    }
    .divider {
      text-align: center;
      margin: 20px 0;
      color: #999;
      position: relative;
    }
    .divider::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 1px;
      background-color: #ddd;
    }
    .divider span {
      background-color: white;
      padding: 0 15px;
    }
    .social-login {
      display: flex;
      gap: 10px;
      justify-content: center;
    }
    .social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 10px 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      background-color: white;
      color: #555;
      text-decoration: none;
      font-size: 14px;
    }
    .register-link {
      text-align: center;
      margin-top: 20px;
      font-size: 14px;
      color: #666;
    }
    .register-link a {
      color: #4a6bff;
    }
    .hero-content {
      max-width: 80%;
      color: white;
      text-align: left;
    }
    .hero-content h2 {
      font-size: 28px;
      margin-bottom: 10px;
    }
    .hero-content .subtitle {
      font-size: 18px;
      margin-bottom: 15px;
      opacity: 0.9;
    }
    .hero-content .description {
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 20px;
      opacity: 0.9;
    }
    .hero-content .tagline {
      font-size: 16px;
      font-style: italic;
      margin-bottom: 20px;
      opacity: 0.95;
    }
    .hero-content .login-features {
      font-size: 15px;
      margin-bottom: 10px;
      font-weight: 500;
    }
    .hero-content .feature-list {
      list-style-type: none;
      margin-bottom: 20px;
      padding-left: 0;
    }
    .hero-content .feature-list li {
      font-size: 14px;
      margin-bottom: 8px;
      padding-left: 20px;
      position: relative;
    }
    .hero-content .feature-list li::before {
      content: "•";
      color: white;
      font-weight: bold;
      position: absolute;
      left: 0;
    }
    .hero-content .cta {
      font-size: 16px;
      font-weight: 600;
      margin-top: 10px;
    }
    .language-toggle {
      display: flex;
      justify-content: flex-end;
      margin-bottom: 20px;
    }
    .language-toggle a {
      margin-left: 10px;
      color: #4a6bff;
      text-decoration: none;
    }
    .footer {
      text-align: center;
      margin-top: 20px;
      font-size: 12px;
      color: #999;
    }

    /* ── Mobile: phones ───────────────────────────── */
    @media (max-width: 600px) {
      .login-container {
        flex-direction: column;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        min-height: unset;
      }

      .login-left {
        order: 1;
        padding: 28px 20px;
        width: 100%;
      }

      .login-right {
        order: 2;
        padding: 28px 20px;
        width: 100%;
      }

      .hero-content {
        max-width: 100%;
        text-align: left;
      }

      /* Remove the extra top padding on the row so form sits higher */
      .row[style*="padding-top:150px"],
      .row[style*="padding-top: 150px"] {
        padding-top: 90px !important;
      }
    }

    /* ── Tablet: 601–900 px ───────────────────────── */
    @media (min-width: 601px) and (max-width: 900px) {
      .login-container {
        flex-direction: column;
        width: 94%;
        max-width: 560px;
        min-height: unset;
        margin: 0 auto;
      }

      .login-left {
        order: 1;
        padding: 32px 30px;
      }

      .login-right {
        order: 2;
        padding: 30px;
      }

      .hero-content {
        max-width: 100%;
      }
    }