.login-page {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}

.login-page .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 550px;
  /*background-color: #f3967a10;*/
  background-image: url("../assets/test_1.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}

.login-page .login-form {
  max-width: 400px; 
  width: 80%;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 20px;
}


.login-form h2 {
  text-align: center;
}

.login-form
{
  position: absolute;
  top: max(280px,40%);
  left: 50%;
  transform: translate(-50%, -50%);
}

.login-form .logo-wrapper {
  position: absolute;
  width: 150px;
  height: 150px;    
  top: -45%;
  left: 50%;
  transform: translate(-50%, 0%);
  border-radius: 50%;
  /*background-color: rgba(255, 217, 223, 0.8);*/
  background-color: rgba(255, 255, 255, 0.9);
}


.login-form .login-logo {
  width: 120px;
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%, 75%);
}

.login_form-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login_form-form input[type="text"],
.login_form-form input[type="password"],
.login_form-form button {
  max-width: 300px;
  width:100%;
  height: 40px;
  margin-bottom: 10px;
}

button[type="submit"] {
  border-radius: 50px;
  background-color: lightblue;
  padding: 10px 20px;
  border: none;
  color: white;
  transition: background-color 0.3s;
}

button[type="submit"]:hover {
  background-color: darkblue;
}



.login_form-form .password-wrapper {
  position: relative;
      width: 100%;
    max-width: 300px;
    left: -6px;
}

.login_form-form .toggle-password {
  position: absolute;
  top: 45%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #999;
}


.error-message {
  position: relative;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: red;
}



