@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Patrick+Hand&display=swap");
::-webkit-scrollbar {
  width: 10px;
  position: fixed;
}

::-webkit-scrollbar-thumb {
  background-color: #ddd;
  transition: 300ms;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #ccc;
}

::selection {
  background-color: #e1e9fd;
}

html {
  min-height: 100vh;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  transition: 400ms;
}

body {
  height: 100vh;
  width: 100vw;
  display: flex;
  background: linear-gradient(rgba(141, 175, 127, 0.6392156863), rgba(141, 175, 127, 0.6392156863)), url(./../../src/landscape3.png) no-repeat center/cover fixed;
}

.leftBanner {
  opacity: 0;
  width: 0%;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 96px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}

.rightBanner {
  position: relative;
  opacity: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
  flex-direction: column;
  background-color: #fff;
  border-radius: 0;
}
@media screen and (max-width: 630px) {
  .rightBanner {
    padding: 60px 20px;
  }
}
.rightBanner .homeLink {
  opacity: 0;
  position: absolute;
  height: 2.3rem;
  aspect-ratio: 1/1;
  top: 10px;
  left: 10px;
  font-size: 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms;
  background-color: rgba(255, 255, 255, 0.5333333333);
  color: #082645;
}
.rightBanner__title {
  opacity: 0;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3em;
  letter-spacing: 0.2px;
  color: #8bad7f;
  text-align: center;
  margin-bottom: 1rem;
  user-select: none;
}
.rightBanner form {
  opacity: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  padding: 1rem;
}
@media screen and (max-width: 575px) {
  .rightBanner form {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.rightBanner form input {
  font-size: 1rem;
  position: relative;
  transition: all 300ms ease !important;
  outline: 4px solid rgba(0, 0, 0, 0);
}
.rightBanner form input:focus {
  transition: all 300ms ease !important;
  outline: none;
  border: 1px solid #8bad7f;
  outline: 4px solid rgba(139, 173, 127, 0.2666666667);
  background-color: rgba(139, 173, 127, 0.062745098);
}
.rightBanner form .error {
  outline: 4px solid rgba(255, 0, 0, 0.2666666667);
  background-color: rgba(255, 0, 0, 0.062745098);
  border-radius: 8px;
  padding: 12px;
}
.rightBanner form input, .rightBanner form select, .rightBanner form label {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.rightBanner form input::placeholder, .rightBanner form select::placeholder, .rightBanner form label::placeholder {
  color: rgba(0, 0, 0, 0.3333333333);
  font-size: 1.1rem;
  font-weight: 300;
}
.rightBanner form input[type=file] {
  display: none;
}
.rightBanner form input[type=file]:valid ~ .photoLabel {
  background-color: rgba(0, 255, 0, 0.1333333333);
}
.rightBanner form .photoLabel {
  display: flex;
  justify-content: space-between;
}
.rightBanner form select, .rightBanner form ::picker(select) {
  appearance: base-select;
}
.rightBanner form select::picker-icon {
  color: #999;
  transition: 0.4s rotate;
}
.rightBanner form select:open::picker-icon {
  rotate: 180deg;
}
.rightBanner form select:first-child {
  color: rgba(0, 0, 0, 0.3333333333);
}
.rightBanner form label.visibility {
  height: 2.5rem;
  width: 4rem !important;
  cursor: pointer;
  user-select: none;
  width: min-content;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rightBanner form label.visibility i {
  color: rgba(0, 0, 0, 0.3333333333);
  transition: 300ms;
}
.rightBanner form .doubleCol {
  grid-column: span 2;
}
@media screen and (max-width: 575px) {
  .rightBanner form .doubleCol {
    grid-column: span 1 !important;
  }
}
.rightBanner form button {
  background-color: rgba(139, 173, 127, 0.8666666667);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
.rightBanner form button:hover {
  background-color: #082645;
}
.rightBanner form .bottomLink {
  display: flex;
  justify-content: right;
  color: rgba(0, 0, 0, 0.3333333333) !important;
  color: #8bad7f;
  text-decoration: underline;
  cursor: pointer;
}

.width100 {
  width: 100% !important;
}
@media screen and (max-width: 1200px) {
  .width100 {
    width: 100% !important;
  }
}

.width40 {
  width: 40% !important;
}
@media screen and (max-width: 1500px) {
  .width40 {
    width: 50% !important;
  }
}
@media screen and (max-width: 1200px) {
  .width40 {
    width: 100% !important;
  }
}

.width60 {
  width: 60% !important;
}
@media screen and (max-width: 1500px) {
  .width60 {
    width: 50% !important;
  }
}
@media screen and (max-width: 1200px) {
  .width60 {
    width: 0% !important;
  }
}

.opacity1 {
  opacity: 1 !important;
}

.opacity0 {
  opacity: 0 !important;
}

.borderRadiusOff {
  border-radius: 0 !important;
}

.borderRadiusOn {
  border-radius: 1.5rem 0 0 1.5rem !important;
}
@media screen and (max-width: 1200px) {
  .borderRadiusOn {
    border-radius: 0 !important;
  }
}

/*# sourceMappingURL=register.css.map */
