* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background-color: #f4f4f4;
  }

  .container {
    display: flex;
    min-height: 100vh;
  }

  /* Left Section (Illustration & Text) */
  .left-section {
    flex: 1;
    background-color: #d3e0f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }

  .left-section img {
    max-width: 70%;
    height: auto;
  }

  /* Right Section (Form) */
  .right-section {
    flex: 1;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
  }

  .form-container {
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
  }

  .form-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #333;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #333;
  }

  .input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    background-color: #fff;
  }

  .input-wrapper i {
    padding: 0 0.75rem;
    color: #999;
  }

  .input-wrapper input {
    flex: 1;
    border: none;
    padding: 0.75rem;
    outline: none;
    font-size: 0.95rem;
    color: #333;
  }

  .toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 0.75rem;
    color: #999;
    font-size: 1rem;
  }

  .btn-submit {
    width: 100%;
    padding: 0.75rem;
    background-color: #d3e0f1;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    color: #333;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: background-color 0.3s ease;
  }

  .btn-submit:hover {
    background-color: #c3d6f0;
  }

  .extra-options {
    margin-top: 1.5rem;
    text-align: center;
  }

  .extra-options button {
    background: none;
    border: none;
    color: #555;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 0.5rem;
    text-decoration: underline;
  }

  /* Social login section */
  .social-login {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
  }
  .social-login span {
    margin: 0 0.25rem;
    color: #999;
  }
  .social-login a {
    color: #999;
    font-size: 1.2rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
  }
  .social-login a:hover {
    color: #333;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
    .left-section, .right-section {
      flex: unset;
      width: 100%;
    }
    .left-section {
      padding: 2rem 1rem;
    }
    .right-section {
      padding: 2rem 1rem;
    }
    .left-section img {
      max-width: 80%;
    }
  }