/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.signup-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#left-container {
  width: 55%;
  background-image: url("/assets/AccountLogIn.jpg");
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
}

#left-container h1 {
  font-size: 38px;
  margin: 3em 0 .3em 0;
}

#left-container p {
  font-size: 18px;
}

#login-logo {
  margin: 3em 0 .3em 0;
  max-width: 600px;
  width: 100%;
}

#right-container {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#right-container p a {
  text-decoration: none;
  font-weight: 600;
}

#right-container p:last-child {
  font-size: 14px;
  margin-top: .8em;
}

#right-container p:last-child a {
  font-weight: normal;
  color: #000000;
}

#title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: center;
  line-height: 1;
}

#title span {
  font-weight: normal;
  font-size: 14px;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

form input:not(input[type="checkbox"]) {
  width: 350px;
  padding: .8em 1em;
  font-size: 15px;
  margin-bottom: 1.2em;
  border: 1px solid #bbbbbb;
}

form div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1.2em;
  font-weight: 600;
}

form input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

form input[type="submit"] {
  background-color: #459941;
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

form input[type="submit"]:hover {
  background-color: #24771f;
}

form input.error {
  -webkit-box-shadow: 0 0 0 1px red;
          box-shadow: 0 0 0 1px red;
}

form p {
  font-weight: 500;
  margin-bottom: 5px;
}

#error-message {
  height: 22px;
  margin-top: 1em;
  color: red;
}

#password-message {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  padding: .7em;
  -webkit-box-shadow: 0 0 3px #000000;
          box-shadow: 0 0 3px #000000;
}

#password-message p {
  padding-left: 15px;
}

#password-message .invalid {
  color: red;
}

#password-message .invalid:before {
  position: relative;
  left: -15px;
  content: "✖";
}

#password-message .valid {
  color: green;
}

#password-message .valid:before {
  position: relative;
  left: -15px;
  content: "✔";
}