*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}
body {
  background-color: #101213;
  background-image: url('../../img/administration/background.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.wrapper {
  position: relative;
  background-color: rgba(25, 25, 25, 0.5);
  width: 100%;
  min-height: 100vh;
  padding: 10px;
}
.wrapper .wrapper-inner {
  background-color: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
  width: 100%;
  min-height: 520px;
  padding: 50px 35px;
}
.wrapper .wrapper-inner * {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  letter-spacing: 0.5px;
  outline: none;
  border: none;
}
.wrapper .wrapper-inner h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  text-align: center;
}
@media (min-width: 420px) {
  .wrapper .wrapper-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
  }
}
form label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
}
form input {
  display: block;
  background-color: rgba(255, 255, 255, 0.07000000000000001);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 300;
  width: 100%;
  height: 50px;
  padding: 0 10px;
  margin-top: 8px;
}
form ::placeholder {
  color: #e5e5e5;
}
form button {
  background-color: #ffffff;
  color: #080710 !important;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  width: 100%;
  margin-top: 50px;
  padding: 11px 0;
  cursor: pointer;
}
.warning .title {
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}
.warning .text {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 10px;
}
