* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  height: 100vh;
  flex-direction: row;
}

a {
  text-decoration: none;
  color: white;
}

.left, .right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.left {
  width: 50%;
  background: #007bff;
  border-radius: 20px;
}

.right {
  width: 50%;
  background: white;
}

.logo {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.form-container {
  width: 70%;
  max-width: 400px;
}

h2 {
  text-align: center;
  color: #007bff;
  font-size: 2em;
  margin-bottom: 20px;
}

label {
  color: #007AFF;
  font-weight: bold;
  display: block;
  margin-top: 20px;
}

input {
  width: 100%;
  height: 50px;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #007bff;
  border-radius: 5px;
}

.login-link {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
  color: #A4A7AD;
}

.login-link a {
  color: #007bff;
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}

button {
  width: 100%;
  padding: 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1em;
  margin-top: 20px;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  body {
      flex-direction: column;
  }

  .left, .right {
      width: 100%;
      border-radius: 0;
  }

  .left {
      height: 40vh;
  }

  .right {
      height: 60vh;
  }

  .form-container {
      width: 90%;
  }

  button {
      width: 100%;
      margin-left: 0;
  }
}