body {
  margin: 0;
  overflow-x: hidden;
}

p,
a {
  font-size: 14px;
}

.auth {
  width: 100%;
  height: 100vh;
  max-height: -webkit-fill-available;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth__icon {
  width: 75px;
}

.auth__wrapper {
  padding: 30px 25px;
  width: 100%;
  max-width: 500px;
  min-height: 85%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.detail .auth__wrapper {
  text-align: left;
}

.status .auth__wrapper {
  justify-content: center;
}

.auth__header {
}

.auth__footer {
  display: flex;
  flex-direction: column;
}

.auth__field--end-offset {
  margin-right: 10px;
}
.auth__field {
  padding: 5px 10px;
  width: calc(100% - 20px);
  transition: 0.2s all ease;
  border: 1px solid black;
  opacity: 0.5;
  border-radius: 0;
  height: 25px;
  margin-top: 7.5px;
  margin-bottom: 7.5px;
}
.auth__field:focus {
  outline-width: 0;
  opacity: 1;
}

.auth__button {
  width: 100%;
  height: 45px;
  margin: 5px 0;
  cursor: pointer;
  padding: 10px 0;
  border-radius: 25px;
  border: 0;
  transition: 0.3s all ease;
  background-color: black;
  font-size: 18px;
  color: white;
  outline-width: 0;
  -webkit-appearance:none;
}
.auth__row {
  display: flex;
  align-items: center;
}

.auth__alert {
  color: #eb5a46;
}

.auth__button:hover {
  opacity: 0.8;
}
.auth__button--fb {
  background-color: #4267b2;
  color: white;
  font-size: 18px;
}
.auth__button--link {
  background-color: transparent;
  color: black;
  height: auto;
  text-align: center;
  font-size: 14px;
  text-decoration: underline;
}
.auth__button--circular {
  border: 1px solid #c1c1c1;
  border-radius: 30px;
  width: 25px;
  height: 25px;
  padding: 0;
  font-weight: 200;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 15px;
  background-color: transparent;
  color: black;
}
.auth__button--link:hover,
.auth__button--circular:hover {
  opacity: 0.5;
}
