@import '../assets/css/style.css';

body {
  padding-bottom: 0;
}

.login {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;

  background: #eee;
}

.login-container {
  max-width: 500px;
  width: 100%;
  padding: 40px 50px;
  background: #fff;

  position: relative;
  z-index: 2;
}

.login-header {
  margin-bottom: 20px;
}

.login-form__container__input__input {
  width: 100%;
  padding: 10px;
  /* box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .1); */
  outline: 0;
}


.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-form__container__input__title {
  margin-bottom: 5px;
}

.login-form__submit {
  padding: 10px;
  width: 100%;

  border: 0;
  background: #007eb5;
  color: #fff;
  cursor: pointer;
}

/*  */
.login-form__authorization {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 13px;
}
.login-form__authorization__link {
  color: blue;
}


/*  */
.login-form__bottom {
  text-align: center;
}

.message-error__text {
  text-align: center;
}

.login-form__register {
  color: blue;
  font-size: 14px;
}

.test {
  font-size: 13px;
}

/*  */
.login-container__logo {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 3;
}
.login-container__text {
  color: #fff;
}

/* */
.login-container__background {
  width: 100%;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #007eb5;
}

/*  */
.login-form__container__input__content {
  position: relative;
}

/*  */
.login-icons__eye {
  width: 20px;
  border: 0;
  background: none;

  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.login-icons__eye__svg {
  width: 100%;
  display: block;
}