    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    body {
      background: #f8f8f8;
      display: flex;
      height: 100vh;
      justify-content: center;
      align-items: center;
    }

    .login-container {
      background: white;
      display: flex;
      width: 800px;
      border-radius: 16px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .form-section {
      padding: 60px 40px;
      flex: 1;
    }

    .form-section img {
      width: 300px;
      margin-bottom: 30px;
    }

    .form-section h1 {
      font-size: 26px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #222;
    }

    .form-section p {
      font-size: 14px;
      color: #666;
      margin-bottom: 30px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 20px;
    }

    .form-group label {
      font-size: 13px;
      margin-bottom: 8px;
      color: #444;
    }

    .form-group input {
      padding: 12px 14px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 14px;
    }

    .options {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      font-size: 13px;
    }

    .options input {
      margin-right: 6px;
    }

    .form-section button {
      width: 100%;
      padding: 12px;
      font-size: 15px;
      background-color: #e74c3c;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-bottom: 15px;
    }

    .signup-link {
      font-size: 13px;
      text-align: center;
      color: #444;
    }

    .signup-link a {
      color: #e74c3c;
      text-decoration: none;
    }

    .image-section {
      flex: 1;
      background: #f1f1f1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media(max-width: 768px) {
      .login-container {
        flex-direction: column;
        width: 90%;
      }

      .image-section {
        display: none;
      }
    }