{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}
body {
  display: flex;
  height: 100vh;
  background-color: #000;
  color: #fff;
  font-size: 18px;
}
.container {
  display: flex;
  width: 100%;
}
.left {
  background-color: #ffe14c;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  border-top-right-radius: 100% 100%;
  border-bottom-right-radius: 100% 100%;
}
.left h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #000;
}
.left p {
  font-size: 1.2em;
  margin-bottom: 40px;
  text-align: center;
  color: #000;
}
.left button {
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}
.right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}
.right h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}
.right button {
  background-color: #ffe14c;
  border: none;
  color: #000;
  padding: 10px;
  font-weight: bold;
  margin-top: 10px;
  border-radius: 5px;
  cursor: pointer;
}
