@font-face {
  font-family: neue;
  src: url(../fonts/NeueMachina-Medium.9b0d1b5.woff);
}

@font-face {
  font-family: neue-reg;
  src: url(../fonts/NeueMachina-Regular.37d032e.woff);
}

@font-face {
  font-family: neue-light;
  src: url(../fonts/PPNeueMachina-InktrapLight.otf);
}

@font-face {
  font-family: nbi;
  src: url(../fonts/NBInternational.071ca39.woff2);
}

@font-face {
  font-family: nbi-bold;
  src: url(../fonts/NBInternational-Bold.1b215f4.woff2);
}

@font-face {
  font-family: nbi-light;
  src: url(../fonts/NBInternational-Light.1f26714.woff2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: nbi-light;
  letter-spacing: .5px;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url("../images/login.jpg") no-repeat;

  background-position: center;
  background-size: cover;
}

h1 {
  font-family: neue-light;
}

.title {
    position: absolute;
    top: 11%;
}

.wrapper {
  width: 420px;
  background-color: transparent;
  color: #fff;
  border-radius: 10px;
  padding: 30px 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.register-wrapper {
  margin-top: 9rem;
}

.wrapper h1 {
  font-size: 32px;
  text-align: center;
}

.wrapper .input-box {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 30px 0;
}

.input-box input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  font-size: 16px;
  color: #fff;
  padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
  color: #fff;
}

.input-box i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.wrapper .remember-forgot {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin: -15px 0 15px;
}

.remember-forgot label input {
  accent-color: #fff;
  margin-right: 3px;
}

.remember-forgot a {
  color: #fff;
  text-decoration: none;
}

.wrapper .btn {
  width: 100%;
  height: 45px;
  background-color: #267af3;
  border: none;
  outline: none;
  border-radius: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 16px;
  color: white;
  font-weight: 600;
  transition: all 0.8s ease-out;
}

.wrapper .btn:hover {
  background-color: #2069cf;
  color: #fff;
}

.wrapper .register-link {
  font-size: 14px;
  text-align: center;
  margin: 20px 0 15px;
}

.register-link p a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.register-link p a:hover {
  text-decoration: underline;
  color: #77b0ff;
}
