body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.form-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.form-container p {
  text-align: center;
}

.form-container form {
  border: none;
  width: 40%;
  height: 100vh;
  border-radius: 0;
  box-shadow: unset;
  align-items: center;
  justify-content: center;
}

.form-container form .form-heading {
  align-items: center;
}

.form-container form button {
  align-self: center;
}

.form-container form .input-group {
  width: 80%;
}

.form-container form label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-container form label a {
  font-weight: 400;
  color: #279eff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-container .form-alt-link {
  font-weight: 500;
  color: #279eff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: underline;
  font-weight: 400;
}

.form-container form button {
  width: 80%;
}

.form-container form .logo {
  width: 60%;
  height: 5rem;
}

.form-container form .logo img {
  object-fit: contain;
}

.form-container .form-img {
  width: 70%;
  height: 100vh;
}

form .toggle-password {
  text-transform: uppercase;
  color: #279eff;
  font-weight: 400;
  font-size: 1.3rem;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .form-container {
    width: 100%;
    padding: 1rem;
  }
  .form-container .form-img {
    display: none;
  }

  .form-container form {
    width: 50rem;
    height: unset;
  }
}
@media (max-width: 600px) {
  .form-container form {
    width: 100%;
  }
}
