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

.login-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  width: 20vw;
  box-shadow: 0 4px 13px 6px rgba(0, 0, 0, 0.2);
  background-color: var(--primary-bg-color);
}

.login-box .logo {
  margin-bottom: 2rem;
  max-width: 80%;
}

.login-box .notification {
  width: 100%;
  margin-bottom: 2rem;
}

.login-box .credentials {
  padding: 1.4rem;
  width: 100%;
}

.credentials .explanation {
  font-size: 0.8rem;
}

.credentials input.text {
  padding-left: 2rem;
}

.credentials .icon-left.user::after {
  content: '\f007';
}

.credentials .icon-left.pass::after {
  font-weight: 700;
  content: '\f084';
}
