body {
  display: block;
  margin: 0px;
}

.background-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../img/background.png');
}

.logo {
  position: absolute;
  left: 50px;
  top: 60px;
  max-height: 110px;
}

.login-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 54px;
  box-shadow: 0 2px 2px 0 rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12.5px);
  margin: auto;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  max-width: 520px;
}

.login-content {
  display: flex;
  padding: 110px 80px 70px 100px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.login-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
/*  gap: 20px;*/
  align-self: stretch;
}

.login-form h1 {
  color: #FFF;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 36px; 
  letter-spacing: 0.058px;
  color: #ffffff;
}

.login-inputs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 340px;
  align-self: stretch;
}

.login-inputs-field {
  width: 100%;
  position: relative;
}

.login-inputs-field label {
  align-self: stretch;
  color: #FFFFFF;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.024px;
}

.login-inputs-field input {
  display: flex;
  height: 60px;
  padding: 0 10px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background-color: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #FFF;
  outline: none;
  box-sizing: border-box;
  width: 100%;
  padding-right: 35px;
}

.login-inputs-field input.error {
  color: #D46058;
  border: 2px solid #D46058;
}

.login-inputs-field input:hover {
  border: 1px solid #919498;
}

.login-inputs-field input:focus {
  border-color: #FFEA24;
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.30);
}

.login-inputs-field input:active {
  border: 2px solid #FFEA24;
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.30);
  color: #34363A;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.026px;
}

.login-inputs-field input:not(:placeholder-shown) {
  border: 2px solid #919498;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.026px;
}

.login-inputs-field input::placeholder {
  color: #ABABAD;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.026px;
}

.login-inputs-field .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.login-error {
  color: #D46058;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.16px;
  margin-top:10px;
}

.login-buttons {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  min-width: 340px;
  margin-top: 20px;
}

.login-buttons a {
  align-self: stretch;
  color: #FFF;;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 27px;
  text-decoration: none;
}

.buttons {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}

.buttons button {
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  align-self: stretch;;
  padding: 10px 20px;
  gap: 10px;
  border-radius: 10px;
  background: #000066;
  color: #FFFFFF;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.026px;
  outline: none;
  box-sizing: border-box;
  border: none;
}

.buttons button:hover {
  background-color: #00228D;
}

.buttons button:focus {
  background-color: #134DD9;
}

.buttons button:active {
  background-color: #020641;
}

.login-language {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 0;
}

.lang {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.lang a {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  overflow: hidden;
}

.lang img {
  border-radius: 50%;
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.lang img:hover {
  border-radius: 50%;
  transform: scale(1.5);
}

.forgot-password:hover {
  color: #cbedff;
}

@media (max-height: 706px) {
  .custom-height {
    height: 100% !important;
  }
}

.logout-pixel {
  opacity: 0;
}

@media only screen and (max-width: 480px) {

  .logo {
    left: 43px;
    top: 20px;
    max-height: 67px;
  }

  .login-div {
    margin-top: 130px;
    max-width: 370px;
  }

  .login-content {
    padding: 20px 30px 70px 30px;
  }

  .login-form h1 {
    font-size: 30px;
  }

  .login-inputs-field {
    max-width: 300px;
  }
}