.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/skyline.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(0);
  z-index: 1;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: black;
  opacity: 0.8;
  width: 100%;
  height: 100%;
}

.wrapper {
  display: flex;
  box-shadow: var(--shadow500);
  width: min(100%, 72vw);
  height: min(70%, 73vh);
  background-color: white;
  position: absolute;
  z-index: 3;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.left {
  height: 100%;
  width: 100%;
  background-image: url("../assets/images/Overview.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  z-index: 1;
}

.right {
  box-shadow: var(--shadow500);
  width: 50%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background-color: var(--background);
  top: 0;
  right: 0;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.form-selector {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: relative;
}

button.select {
  padding: 0.5rem 2.5rem;
  font-size: 1.875rem;
  opacity: 0.6;
  position: relative;
  transition: var(--t150ms);
}

button.select.active {
  opacity: 1;
}

button.select:hover::after {
  content: "";
  width: 100%;
  height: 5px;
  background-color: var(--goldenYellow);
  position: absolute;
  bottom: -12px;
  left: 0;
  transition: var(--t150ms);
}

.indicator {
  height: 5px;
  background-color: var(--goldenYellow);
  position: absolute;
  bottom: -12px;
  left: 0;
  transition: var(--t150ms);
  z-index: +2;
}

.form-container {
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
  width: 100%;
  align-items: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: min(380px, 100%);
}

form .form-header {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}
form label {
  position: relative;
}

form label input {
  width: 100%;
  height: 3rem;
  border: 1px solid var(--grey300);
  border-radius: 3px;
  padding: 0.5rem 1rem;
}

label .placeholder {
  position: absolute;
  top: 50%;
  padding-left: 1rem;
  transform: translate(0, -50%);
  font-size: 0.875rem;
  opacity: 0.6;
  transition: var(--t150ms);
}

.loginBtn {
  width: 100%;
  background-color: var(--goldenYellow);
  color: white;
  height: 2.5rem;
  border-radius: var(--btnRadius);
  margin-top: 1rem;
}

.otherAction span {
  color: var(--goldenYellow);
  font-size: 0.875rem;
}

.otherAction {
  text-align: center;
  margin-top: 1rem;
}

.forgotPassword {
  text-align: end;
}
