body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  height: 100vh;
}

.container {
  display: flex;
  width: 100%;
}

.form-container {
  width: 50%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.form-container h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.form-container label {
  margin-top: 15px;
  font-weight: bold;
}

.form-container input {
  padding: 10px;
  font-size: 16px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.form-container button {
  margin-top: 25px;
  padding: 12px;
  background-color: #0066ff;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-container button:hover {
  background-color: #004ac9;
}

.login-link {
  margin-top: 20px;
  font-size: 14px;
}

.image-container {
  width: 50%;
}

.image-container img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
