body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eaf3ff;
  font-family: "Open Sans", sans-serif;
  margin-top: 80px;
}
main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 600px;
  border-radius: 20px;
  padding: 20px;
  background-color: white;
}
#companySignup .topText,
#staffSignup .topText,
#driverSignup .topText {
  margin: 10px auto;
  text-align: center;
}
.double-input {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 20px 0;
}
.double-input input {
  width: 290px;
  height: 30px;
  border-radius: 7px;
  margin: 5px;
}
input:focus,
textarea:focus {
  outline: 1px solid #4285f4;
}
input,
textarea {
  transition: all 0.6s;
  padding: 3px;
  width: 590px;
  height: 30px;
  border-radius: 7px;
  margin: 5px;
  border: 1px solid rgb(145, 145, 145);
}
textarea {
  height: 50px;
}
label {
  font-weight: bolder;
}
button {
  max-width: 550px;
  width: 100%;
  height: 50px;
  margin: 30px auto;
  background-color: #4285f4;
  color: white;
  font-size: 16px;
  font-weight: bolder;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.4s ease-in;
}
button:hover {
  background-color: #5494fc;
}
form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.form-section {
  display: none;
}
.form-section.active {
  display: block;
}
/* Not yet responsive*/
@media (max-width: 640px) {
  main {
    width: 90vw;
    margin-top: 5px;
  }
  #companySignup .topText {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  .double-input {
    display: block;
  }
  .double-input input {
    display: flex;
    justify-self: flex-start;
    align-items: center;
    transition: all 0.6s;
    padding: 3px;
    width: 70vw;
    height: 30px;
    border-radius: 7px;
    margin: 5px;
    border: 1px solid rgb(145, 145, 145);
  }
  input,
  textarea {
    width: 70vw;
  }
  textarea {
    height: 50px;
  }
  label {
    font-weight: bolder;
    display: block;
  }
  button {
    width: 100%;
    font-size: 16px;
  }
}
