.login-page-container {
  position: relative;
  display: flex;

  align-items: stretch;
  justify-content: space-between;

  flex-direction: row;

  flex-wrap: wrap;

  width: 100%;
  min-height: 100vh;
}

.login-page-container > div {
  position: relative;
  display: flex;
  flex: 1;
  flex-shrink: 0;

  flex-direction: column;
}

.login-page-side {
  align-items: center;

  padding: 60px 60px;
}

.login-page-side-fullbackground {
  position: absolute;
  display: flex;
  z-index: -1;

  width: 100%;
  height: 100%;

  top: 0;
  right: 0;
  left: 0;
  bottom: 0;

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.login-page-side-header {
  position: relative;
  display: flex;

  align-content: center;
  justify-content: space-between;

  flex-direction: row;

  width: 100%;
}

.login-page-side-header-logo {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;
}
.login-page-side-header-logo img {
  position: relative;
  display: flex;

  width: auto;
  max-height: 35px;

  object-fit: contain;
  object-position: center center;
}

.login-page-side--form {
  max-width: 450px;
  min-width: 340px;
  /* box-shadow: -10px 0 24px rgba(0, 0, 0, 0.1); */
  background: white;
}

.login-page-form-title {
  position: relative;
  display: flex;

  margin-top: 40px;
  margin-bottom: 20px;

  font-size: 26px;
  font-weight: 500;
}

.login-page-form-inputgroup {
  position: relative;
  display: flex;

  flex-direction: column;

  margin: 10px 0;

  width: 100%;
}

.login-page-form-inputlabel {
  position: relative;
  display: flex;

  padding: 5px 0;

  font-size: 16px;
  font-weight: 400;
}

.login-page-form-input {
  position: relative;
  display: flex;

  width: 100%;
  height: 30px;

  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;

  border-bottom: 2px solid rgba(0, 0, 0, 0.2);

  font-size: 16px;

  transition: 0.3s all ease-in-out;
}
.login-page-form-input:focus {
  border-bottom-color: rgba(0, 0, 0, 1);
}

[form-name] .form-general-error-text,
[form-name] .error-text {
  position: relative;
  display: none;

  margin-top: 5px;
  margin-bottom: 10px;

  width: 100%;

  font-size: 12px;
  font-weight: 500;

  color: rgba(200, 20, 20, 1);
}
[form-name] .form-general-error-text.has_error,
[form-name] .has_error .error-text {
  display: flex;
}

.login-page-form-button {
  cursor: pointer;
  position: relative;
  display: flex;
  overflow: hidden;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;

  margin: 15px 0;

  width: 100%;
  height: 45px;

  padding: 5px 20px;

  border-radius: 12px;

  font-size: 14px;

  fill: currentColor;
  color: white;

  background: rgba(0, 0, 0, 0.75);

  transition: 0.3s all ease-in-out;
}
.login-page-form-button > div {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  width: 100%;
}

.login-page-form-button:hover,
.login-page-form-button:focus {
  background: rgba(0, 0, 0, 1);
}
.login-page-form-button:focus {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.2);
}
.login-page-form-button .login-page-form-button--loading-overflow {
  position: absolute;
}
.login-page-form-button.is_loading {
  position: relative;
  display: flex;
}

.login-page-form-button .login-page-form-button--loading-overflow {
  position: absolute;
  display: none;

  align-content: center;
  justify-content: center;

  flex-direction: row;

  top: 0;
  right: 0;
  left: 0;
  bottom: 0;

  background: rgba(255, 255, 255, 0.4);
}
.login-page-form-button .login-page-form-button--loading-overflow i {
  font-size: 18px;
  animation: login-page-form-button--loading-overflow-rotation_animation 1s infinite linear;
}
@keyframes login-page-form-button--loading-overflow-rotation_animation {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.login-page-form-button.is_loading > * {
  display: none;
}
.login-page-form-button.is_loading .login-page-form-button--loading-overflow {
  display: flex;
}

.login-page-form-link {
  position: relative;

  margin: 10px 5px;

  font-size: 12px;
  font-weight: 600;

  color: rgba(0, 0, 0, 0.8);
}
