@import url("../../../main.css");
@import url("../navigation/navigation.css");
@import url("../footer/footer.css");

#page-content {
  width: 96%;
  background-color: var(--clean-and-serene-white);
  /* height: 100%; */
  padding: 5%;
}

#vision {
  height: 350px;
  width: 100%;
}

#vision img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

#vision-small {
  display: none;
}

#main-content {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

#column-one {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

#welcome {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  gap: 10px;
  padding: 10px;
  background-color: var(--silver-medallion);
}

#title-block {
  background-color: var(--surrender-white);
  color: var(--white-key-tag-gold);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: var(--l);
  height: 20%;
  width: 100%;
  border-radius: 10px;
}

#keytag {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80%;
}

#keytag svg {
  height: 100%;
}

#membership {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: var(--silver-medallion);
  border-radius: 10px;
  height: 400px;
}

#membership-text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: var(--surrender-white);
  color: var(--white-key-tag-gold);
  font-weight: 600;
  font-size: var(--s);
  height: 100%;
  border-radius: 10px;
  text-align: center;
}

#column-two {
  flex: 2;
  height: 500px;
}

#signup-module {
  background-color: var(--surrender-white);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  /* display: flex; */
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
}

#signup-title {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--s);
  color: var(--stepwork-pencil-lead);
  font-weight: 600;
  /* width: 90%;
  height: 90%; */
}

.left-border-radius {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.right-border-radius {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.icon {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: var(--surrender-white);
}

#signup-form {
  flex: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 5%;
  /* height: 90%; */
}

#signup-form input {
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
}

#name-and-birthday {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--duct-tape-grey);
  padding: 5px;
  border-radius: 10px;
  gap: 3px;
}

#name {
  flex: 5;
  width: 100%;
  height: 100%;
}

#birthday {
  flex: 5;
  width: 100%;
  height: 100%;
}

#email-and-password {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--duct-tape-grey);
  padding: 5px;
  border-radius: 10px;
  gap: 3px;
}

#email {
  flex: 5;
  width: 100%;
  height: 100%;
}

#password {
  flex: 5;
  width: 100%;
  height: 100%;
}

#home-group-and-position {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--duct-tape-grey);
  padding: 5px;
  border-radius: 10px;
  gap: 3px;
}

#home-group {
  flex: 5;
  width: 100%;
  height: 100%;
}

#position {
  flex: 5;
  width: 100%;
  height: 100%;
}

#cleandate-and-phone {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--duct-tape-grey);
  padding: 5px;
  border-radius: 10px;
  gap: 3px;
}

#cleandate {
  flex: 5;
  width: 100%;
  height: 100%;
}

#phone {
  flex: 5;
  width: 100%;
  height: 100%;
}

#about-you {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--duct-tape-grey);
  border-radius: 10px;
  padding: 5px;
}

#about-you textarea {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  outline: none;
  border: none;
}

#signup-button {
  background-color: var(--sixty-day-green);
  color: var(--surrender-white);
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
  border-radius: 5px;
  width: 30%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#signup-button:hover {
  background-color: var(--sixty-day-green-hover);
}

#login-module {
  background-color: var(--surrender-white);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
}

#login-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--s);
  color: var(--stepwork-pencil-lead);
  font-weight: 600;
}

#login-form {
  flex: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 60%;
  gap: 10%;
  /* height: 90%; */
}

#remember-me-and-register {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#remember-me {
  flex: 1;
  cursor: pointer;
  display: flex;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
  justify-content: center;
  align-items: center;
  color: var(--stepwork-pencil-lead);
  gap: 20px;
}

#register {
  flex: 1;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
  color: var(--sixty-day-green);
  text-decoration: underline;
}

#login-form input {
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
}

#login-email-container {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--duct-tape-grey);
  padding: 5px;
  border-radius: 10px;
  gap: 3px;
}

#login-email {
  flex: 10;
  width: 100%;
  height: 100%;
}

#login-password-container {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--duct-tape-grey);
  padding: 5px;
  border-radius: 10px;
  gap: 3px;
}

#login-password {
  flex: 10;
  width: 100%;
  height: 100%;
}

#login-button {
  background-color: var(--sixty-day-green);
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
  cursor: pointer;
  color: var(--surrender-white);
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: 100px;
}

#login-button:hover {
  background-color: var(--sixty-day-green-hover);
}

@media (min-width: 1001px) {

  #vision-large {
    display: block;
  }

  #vision-small {
    display: none;
  }

  #vision-extra-small {
    display: none;
  }

}

@media (max-width: 1000px) {

  #vision-large {
    display: none;
  }

  #vision-small {
    display: block;
  }

  #vision-extra-small {
    display: none;
  }

}

@media (max-width: 800px) {

  #vision-small {
    display: none;
  }

  #vision-large {
    display: none;
  }

  #vision-extra-small {
    display: block;
  }

  #main-content {
    gap: 20px;
    flex-direction: column-reverse;
  }

  #column-one {
    width: 100%;
    gap: 20px;
  }

  #column-two {
    width: 100%;
  }

  #login-form {
    gap: 30px;
    height: min-content;
    width: 90%;
  }

  #welcome {
    height: 400px;
  }

  #keytag {
    height: 300px;
  }

  #membership {
    display: flex;
  }
}

@media (max-width: 700px) {
  #column-one {
    flex-direction: column;
  }

  #membership {
    height: min-content;
  }
}

@media (max-width: 500px) {
  #remember-me-and-register {
    flex-direction: column;
    gap: 10px;
  }
}