@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
html,
body {
  margin: 0;
  padding: 0;
}

* {
  font-family: "Roboto", sans-serif;
}

.form {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 100px 0;
  box-sizing: border-box;
  justify-content: center;
}
.form img {
  max-height: 100px;
  width: auto;
  height: 100%;
}
.form .container {
  max-width: 800px;
  width: 100%;
  margin-top: 50px;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  padding: 20px;
  box-sizing: border-box;
}
.form .container form {
  width: 100%;
  height: auto;
}
.form .container form .form-group {
  width: 100%;
  display: flex;
  margin-top: 20px;
  flex-direction: column;
}
.form .container form .form-group label {
  font-weight: bold;
}
.form .container form .form-group input,
.form .container form .form-group select {
  height: 30px;
  width: 100%;
  margin-top: 5px;
  border: 0;
  padding: 0 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #e4e4e4;
}
.form .container form .form-group input:focus,
.form .container form .form-group select:focus {
  outline: none;
}
.form .container form .form-group button {
  height: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  border: 0;
  background-color: #38c1c7;
  transition: background-color 300ms ease-in-out;
}
.form .container form .form-group button:hover {
  background-color: #8c4c9c;
}
.form .container form .form-group textarea {
  width: 100%;
  margin-top: 5px;
  border: 0;
  padding: 0 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #e4e4e4;
}
.form .container form .form-group textarea:focus {
  outline: none;
}/*# sourceMappingURL=style.css.map */