*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: #4a5568;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  font-family: "Montserrat", sans-serif;
}

.header {
  display: flex;
  justify-content: space-between;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.15);
  background-color: rgb(33, 33, 33);
  height: 100px;
  z-index: 3;
  width: 100%;
}

.logo,
.options {
  justify-content: center;
  align-items: center;
  display: flex;
  flex: 1;
}

.logo img {
  margin: 10px;
}

.navigation {
  display: flex;
  flex: 2;
  color: #fff;
  justify-content: center;
  align-items: center;
}

.navigation p {
  font-size: 30px;
}

.login-wrapper {
  width: 100%;
  max-width: 600px;
  background-color: #1e2227;
  border: 10px solid #363f4a;
  padding: 25px;
  color: #fff;
  margin-top: 100px;
}

.login-form label {
  margin: 5px 0;
}

.login-button {
  border-radius: 10px;
  padding: 10px;
  color: #fff;
  border: none;
}

.backend-login-wrapper {
  background-image: url("/build/assets/backendLoginBackground-Lrvu9xiX.png");
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
}
.backend-login-wrapper .backend-flatfinder-logo-img {
  font-size: 60px;
  color: var(--primary);
}
.backend-login-wrapper .backend-login-left-panel {
  background: linear-gradient(1.25deg, #1E2227 3.08%, rgba(30, 34, 39, 0) 39.36%);
  height: 100%;
  width: calc(100% - 620px);
}
.backend-login-wrapper .backend-login-left-panel .backend-information-wrapper {
  position: absolute;
  bottom: 70px;
  left: 70px;
  max-width: 650px;
}
.backend-login-wrapper .backend-login-left-panel .backend-information-wrapper img {
  background-repeat: no-repeat;
  color: var(--primary);
  margin-left: 2px;
  max-width: 300px;
  height: auto;
}
.backend-login-wrapper .backend-login-left-panel .backend-information-wrapper p {
  color: white;
  font-style: normal;
  font-weight: 700;
  font-size: 42px;
  line-height: 51px;
  margin: 10px 0 0 0;
}
.backend-login-wrapper .backend-login-right-panel {
  height: 100%;
  width: 620px;
  background: rgba(30, 34, 39, 0.85);
  backdrop-filter: blur(7px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 100px;
}
.backend-login-wrapper .backend-login-right-panel form {
  display: none;
  flex-direction: column;
}
.backend-login-wrapper .backend-login-right-panel form .error-message {
  margin-bottom: 10px;
}
.backend-login-wrapper .backend-login-right-panel form img {
  color: var(--primary);
}
.backend-login-wrapper .backend-login-right-panel form h1 {
  color: white;
  font-weight: 700;
  font-size: 30px;
  margin: 24px 0 16px 0;
}
.backend-login-wrapper .backend-login-right-panel form .error-message {
  color: red;
  font-weight: 600;
}
.backend-login-wrapper .backend-login-right-panel form input {
  background: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  padding: 14px 18px;
  border: var(--primary) 1px solid;
  width: 100%;
}
.backend-login-wrapper .backend-login-right-panel form #email {
  margin-bottom: 8px;
}
.backend-login-wrapper .backend-login-right-panel form #password {
  margin-bottom: 12px;
}
.backend-login-wrapper .backend-login-right-panel form p {
  color: white;
  font-size: 14px;
  font-weight: 500;
}
.backend-login-wrapper .backend-login-right-panel form .backend-login-password-forgotten-button {
  cursor: pointer;
}
.backend-login-wrapper .backend-login-right-panel form .backend-login-back-to-login-button {
  cursor: pointer;
}
.backend-login-wrapper .backend-login-right-panel form .button-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}
.backend-login-wrapper .backend-login-right-panel form .button-wrapper input {
  background-color: var(--primary);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}
.backend-login-wrapper .backend-login-right-panel form .button-wrapper:hover input {
  background-color: color-mix(in srgb, var(--primary) 40%, #000 10%);
  cursor: pointer;
  color: var(--primary);
}
.backend-login-wrapper .backend-login-right-panel form .backend-login-back-to-login-button {
  margin-top: 24px;
  text-align: center;
}
.backend-login-wrapper .backend-login-right-panel .password-reset-form {
  display: flex;
}
.backend-login-wrapper .backend-login-form p {
  text-align: end;
  margin: 0;
}
.backend-login-wrapper .backend-password-forgotten-form p {
  text-align: start;
  margin: 0 0 24px 0;
}
.backend-login-wrapper .email-send-wrapper {
  display: none;
  flex-direction: column;
  color: white;
}
.backend-login-wrapper .email-send-wrapper img {
  color: var(--primary);
}
.backend-login-wrapper .email-send-wrapper h1 {
  color: white;
  font-weight: 700;
  font-size: 30px;
  margin: 24px 0;
}
.backend-login-wrapper .email-send-wrapper p {
  color: white;
  font-size: 14px;
  font-weight: 500;
}
.backend-login-wrapper .email-send-wrapper .backend-login-back-to-login-button {
  text-align: center;
  margin: 24px 0 0 0;
  cursor: pointer;
}