@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(to right, #82D8F1, #A2EEEA);
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  width: 550px;
  height: 350px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
  border-right: 30px solid #4286F5;
  padding: 30px;
  border-radius: 5px;
}
.card h3 {
  color: #4286F5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.card button {
  background-color: #4286F5;
  color: #fff;
  width: 100%;
  height: 30px;
  border: none;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label, .form-group input {
  display: block;
}
.form-group label {
  font-size: 10px;
  text-transform: uppercase;
  color: #A1A1A1;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.form-group input {
  width: 100%;
  height: 35px;
  border: none;
  outline: none;
  background: #E5E5E5;
  font-size: 16px;
  padding: 10px;
}

.more {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #A1A1A1;
  margin-bottom: 20px;
}
.more a {
  color: #4286F5;
  text-decoration: none;
}
.more label {
  display: flex;
  column-gap: 7px;
}

/*# sourceMappingURL=style.css.map */
