* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}
body {
  background-color: #7b2cbf;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.container {
  display: flex;
  width: 900px;
  height: 500px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}
.form-section {
  width: 50%;
  padding: 40px;
  background: #fff;
}
.form-section h2 {
  margin-bottom: 20px;
  color: #333;
}
.form-section label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #7b2cbf;
}
.form-section input, 
.form-section select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.form-section button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #7b2cbf;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
}
.form-section a {
  color: #7b2cbf;
  text-decoration: none;
}
.image-section {
  width: 50%;
  background: #ccc;
  position: relative;
}
.overlay {
  background: rgba(123, 44, 191, 0.6);
  color: white;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}