    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f0f4ff;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }

    .container {
      display: flex;
      width: 850px;
      background-color: white;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      border-radius: 12px;
      overflow: hidden;
    }

    .left-panel, .right-panel {
      flex: 1;
    }

    .left-panel {
      background-color: #eef7ff;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .left-panel img {
      max-width: 90%;
      border-radius: 10px;
      transition: transform 0.3s ease-in-out;
    }

    .left-panel img:hover {
      transform: scale(1.25);
    }

    .right-panel {
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .logo {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      border-radius: 50%;
      overflow: hidden;
      transition: transform 0.3s ease-in-out;
    }

    .logo img {
      width: 100%;
      height: 100%;
    }

    .logo:hover {
      transform: scale(1.1);
    }

    h1 {
      margin-bottom: 20px;
      color: #333;
      text-align: center;
      transition: transform 0.3s ease-in-out;
    }

    h1:hover {
      transform: scale(1.1);
    }

    form {
      width: 100%;
    }

    input[type="email"], input[type="password"] {
      width: 100%;
      padding: 12px;
      margin-bottom: 20px;
      border: 2px solid #007bff;
      border-radius: 5px;
      font-size: 16px;
      outline: none;
      transition: all 0.3s ease-in-out;
    }

    input:hover {
      border-color: #0056b3;
      background-color: #f0f8ff;
    }

    button {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
      transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    }

    button:hover {
      transform: scale(1.1);
      background-color: #0056b3;
    }

    button.google {
      background-color: #db4437;
      margin-top: 15px;
    }

    button.google:hover {
      background-color: #c5382e;
    }

    a {
      margin-top: 10px;
      text-align: center;
      color: #007bff;
      text-decoration: none;
      font-size: 14px;
      display: block;
      transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    }

    a:hover {
      text-decoration: underline;
      color: #0056b3;
      transform: scale(1.1);
    }
@media (max-width: 768px) {
  body {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .container {
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    margin-top: 30px;
    align-items: center;
  }

  .left-panel, .right-panel {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .left-panel img {
    max-width: 90%;
    height: auto;
  }

  .right-panel {
    padding: 30px 20px;
    text-align: center;
  }

  form {
    width: 100%;
  }

  input[type="email"], input[type="password"], button {
    width: 90%;
    font-size: 16px;
    box-sizing: border-box;
  }

  h1 {
    font-size: 22px;
  }

  a {
    width: 80%;
    text-align: center;
  }
}

 