main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: #f1f1f1;
}
form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70vw;
  height: 70vh;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
form h1 {
  color: #ff4f5a;
  font-size: 2rem;
  margin-bottom: 20px;
}
form input {
  width: 50vw;
  height: 8%;
  margin: 10px 0;
  padding: 0 10px;
  border: 1px solid #f0f0f0;
  border-radius: 5px;
  font-size: 1rem;
}
form button {
  width: 50vw;
  height: 8%;
  margin: 10px 0;
  border: 1px solid #f0f0f0;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  background-color: #f0f0f0;
  color: #ff4f5a;
  cursor: pointer;
}
form p {
  color: #ff4f5a;
  font-size: 1rem;
  margin-top: 10px;
}
.name {
  display: flex;
    justify-content: space-between;
  width: 50vw;
  height: 8%;
  margin: 10px 0;
  padding: 0;
  border: none;
}
.name input {
  width: 48%;
  height: 100%;
  margin: 10px 0;
  padding: 0 10px;
  border: 1px solid #f0f0f0;
  border-radius: 5px;
  font-size: 1rem;
}
