body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #eaf3ff;
  font-family: "Open Sans", sans-serif;
}

fieldset,
input {
  width: 250px;
}
input {
  width: 250px;
  margin: 0;
  border: none;
  height: 30px;
  padding: 5px;
  border-radius: 5px;
  background-color: #eaf3ff;
}
input:focus {
  outline: none;
}
fieldset {
  margin: 10px;
  padding: 0;
  border: 2px solid rgb(0, 166, 255);
}
form {
  padding: 40px 30px;
  min-width: 200px;
  border-radius: 20px;
  width: 400px;
  display: flex;
  margin: 30px auto;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
button {
  width: 200px;
  height: 40px;
  margin: 10px;
  background-color: #4285f4;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.4s ease;
}
button:hover {
  background-color: #3367d6;
}
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4285f4;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
  font-weight: bold;
}

.google-btn svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
#signupForm {
  display: none;
}
