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

body {
  background: #171822;
  color: white;
  position: relative;
  height: 100vh;
  overflow-x: hidden;
}

body.overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #171822c7;
  z-index: 99;
}

input {
  border: 0;
}

input:focus {
  border: 0;
  outline: 0;
}

button {
  background: none;
  outline: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

img {
  width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.verification {
  padding-top: 64px;
  padding-bottom: 10px;
}

.verification .verification-content {
  position: absolute;
  width: 380px;
  padding: 20px 20px;
  background: white;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.verification .verification-content .title {
  color: #171822;
  font-size: 30px;
  margin-bottom: 20px;
}

.footer {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 20px;
  padding-bottom: 35px;
  color: #72768f;
  position: absolute;
  bottom: 0;
  width: 100%;
}

/*  Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  body {
    width: 100%;
  }
  .verification .verification-content {
    width: 95%;
    text-align: center;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  body {
    width: 100%;
  }
}

/* Medium devices (tablets, 768px and up) */
/* Large devices (desktops, 992px and up) */
/*# sourceMappingURL=index.css.map */