html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  height: 100vh;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #1a1919;
}

textarea,
input.text,
input[type="text"],
input[type="search"],
input[type="button"],
input[type="submit"],
.input-checkbox {
  -webkit-appearance: none;
  border-radius: 0;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #1a1919;
  cursor: pointer;
  position: relative;
}

.app-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
}

.app-item {
  width: 100%;
}

.logo {
  text-align: center;
  margin: 15px 15px 35px 15px;
}

.app-container {
  padding: 40px 80px 15px 80px;
  background-color: #fff;
  border-radius: 8px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 2px solid transparent;
  white-space: nowrap;
  padding: 10px 15px;
  font-size: 15px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none !important;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn.btn-primary {
  color: #ffffff;
  background-color: #1a1919;
  border-color: #1a1919;
  outline: none;
}

.btn.btn-primary:hover {
  background-color: #8260c9;
  border-color: #8260c9;
}

.btn.btn-primary:active,
.btn.btn-primary:focus {
  background-color: #9376d0;
  border-color: #9376d0;
}

.btn.btn-primary .fa {
  padding-right: 4px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  line-height: normal;
  color: #2C3E50;
  background-color: #FFFFFF;
  background-image: none;
  border: 1px solid #DCE4EC;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.focused .form-control {
  border-color: #1a1919;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control,
input {
  border-width: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
  text-align: left;
}

.autocomplete {
  position: relative;
}

.autocomplete-results {
  padding: 0;
  margin: 0;
  height: 120px;
  overflow: auto;
  display: block !important;
  color: #2C3E50;
  border: 2px solid #DCE4EC;
  border-top: 0;
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.focused .autocomplete-results {
  border-color: #1a1919;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.autocomplete-result {
  list-style: none;
  text-align: left;
  padding: 6px;
  cursor: pointer;
}

.autocomplete-result:hover {
  background-color: #1a1919;
  color: white;
}

.final-result {
  text-align: center;
  font-size: 32px;
  margin: 0 0 15px 0;
}

.center {
  text-align: center;
}

@media (max-width: 767px) {
  .app-container {
    padding: 20px;
  }
}
