.login-page {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  position: relative;
  filter: drop-shadow(0 0 2px #ddd);
  border-radius: 5px;
  width: 435px;
  height: auto;
  background-color: #ffffff;
  padding: 40px;
}

.form img, .form i {
  position: absolute;
  height: 20px;
  top: 190px;
  right: 55px;
  cursor: pointer;
}

.form input {
  outline: 0;
  background: #f2f2f2;
  border-radius: 4px;
  width: 100%;
  margin: 15px 0;
  padding: 15px;
  font-size: 14px;
}

.form button {
  outline: 0;
  background: var(--app-theme-color);
  width: 100%;
  border: 0;
  margin-top: 10px;
  border-radius: 3px;
  padding: 15px;
  color: #ffffff;
  font-size: 15px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.form button:hover, .form button:active, .form button:focus {
  background: var(--app-theme-color);
  color: #ffffff;
}

.form .message {
  text-align: center;
  margin-top: 0.5rem;
}

.form .message a {
  font-size: 14px;
  color: var(--app-theme-color);
  text-decoration: none;
}

span {
  color: red;
  margin: 10px 0;
  font-size: 14px;
}
