* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.container {
  width: 100%;
  height: 100vh;
  overflow: auto;
}

.centerdiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.box {
  width: 450px;
  height: auto;
  max-width: 94%;
  padding: 8px;
  background-color: #fff;
  box-shadow: 0px 0px 5px 0px rgba(47, 47, 47, 0.7);
  border-radius: 8px;
}

.heading {
  text-align: center;
}
.heading h1 {
  color: #f23001;
  font-weight: bold;
  font-size: 24px;
}

.col-inputs {
  display: flex;
  flex-direction: column;
  width: 96%;
  padding: 8px;
  align-items: center;
}

.input {
  padding: 5px;
  width: 100%;
  max-width: 350px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.input label {
  width: 100%;
  text-align: justify;
  color: #777;
  font-size: small;
}
.input input {
  padding: 8px 3px;
  border-radius: 8px;
  border: 1px solid #fc714e;
  outline: transparent;
  width: calc(100% - 12px);
  margin: 3px 2px;
}
.input input:focus {
  outline: 2px solid #fc714e;
}

.btngroup {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.btngroup button {
  background-color: #f23001;
  color: #fff;
  font-size: medium;
  border: 1px solid #f23001;
  padding: 8px;
  min-width: 250px;
  margin: 12px 5px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px 0px rgba(84, 84, 84, 0.7);
  transition: all 0.5s ease-in-out;
}
.btngroup button:hover {
  cursor: pointer;
  opacity: 0.75;
  transform: scale(1.02);
}/*# sourceMappingURL=home.css.map */