* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: gilroy;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: #1b1b1b;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.box {
  width: 92%;
  max-width: 400px;
  background-color: #5a6772;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5%;
  border-radius: 10px;
  box-shadow: 0 0 6px 2px #32ee32;
}

.box h1 {
  color: #fff;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.box h2 {
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.box input {
  margin-bottom: 10px;
  width: 66%;
  height: 30px;
  padding: 0 10px;
  border: none;
  border-radius: 20px;
}

.box button {
  padding: 10px 20px;
  background-color: #b4831a;
  border: none;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  font-size: 1.5vw;
}

.box h3 {
  margin-top: 20px;
  color: #fff;
  font-weight: 500;
  font-size: 1.2em;
}
