@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
nav.header {
  width: 340px;
  height: calc(100% - 60px);
  background-color: #f6fff5;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
nav.header .top {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
nav.header .top > .search {
  width: 100%;
  height: 50px;
  position: relative;
}
nav.header .top > .search > input {
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border-radius: 60px;
  background-color: #182450;
  color: #f6fff5;
  padding: 15px;
  margin: 0px;
  font-size: 1.15rem;
  outline: none;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
nav.header .top > .search > img {
  position: absolute;
  height: 100%;
  width: 30px;
}
nav.header .top > .search > img.filter {
  top: 0px;
  right: 50px;
  cursor: pointer;
}
nav.header .top > .search > img.magnify {
  top: 0px;
  right: 15px;
}
nav.header .top > .search > #filter-content {
  display: none;
  margin: 0px calc(10% - 10px);
  padding: 10px;
  padding-top: 0px;
  width: 80%;
  height: fit-content;
  color: #f6fff5;
  background-color: #182450;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
nav.header .top > .search > #filter-content.active {
  display: block;
}
nav.header .top > .search > #filter-content form {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
}
nav.header .top > .search > #filter-content form > div {
  display: flex;
  width: 100%;
  align-items: center;
}
nav.header .top > .search > #filter-content form > .dropdown {
  flex-direction: column;
  align-items: flex-start;
}
nav.header .top > .search > #filter-content form > .dropdown > label {
  color: #a4a5a7;
  position: relative;
  top: 5px;
  margin-left: unset !important;
}
nav.header .top > .search > #filter-content form > .dropdown #season {
  width: 100%;
}
nav.header .top > .search > #filter-content form > .checkbox > input {
  width: unset !important;
  height: unset !important;
}
nav.header .top > .search > #filter-content form > .checkbox > label {
  color: #a4a5a7;
}
nav.header .top > .categories {
  width: calc(100% - 40px);
  padding: 0px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}
nav.header .top > .categories > button {
  cursor: pointer;
  outline: none;
  border: 0px;
  background-color: #e5ffd2;
  padding: 10px 20px;
  border-radius: 60px;
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
nav.header .top > .categories > button.selected {
  background-color: #9bce77;
}
nav.header .top > .categories > button > img {
  height: 80%;
}
nav.header .bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 40px;
}
nav.header .bottom > div {
  height: 100%;
}
nav.header .bottom .actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 15px;
  position: relative;
  height: 100%;
  width: 100%;
}
nav.header .bottom .actions > a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav.header .bottom .actions > a > img {
  height: 80%;
}
nav.header .bottom .actions .profile:hover + .popup,
nav.header .bottom .actions .popup:hover {
  display: block;
}
nav.header .bottom .actions .popup {
  display: none;
  width: 150px;
  height: 90px;
  background-color: #182450;
  position: absolute;
  bottom: 150%;
  left: -22px;
  border-radius: 20px;
}
nav.header .bottom .actions .popup > div:not(.triangle) {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav.header .bottom .actions .popup > div:not(.triangle).signup {
  background-color: #9bce77;
  color: #182450;
  text-decoration: none;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
nav.header .bottom .actions .popup > div:not(.triangle).signup :active,
nav.header .bottom .actions .popup > div:not(.triangle).signup :visited,
nav.header .bottom .actions .popup > div:not(.triangle).signup :link {
  color: #182450;
  text-decoration: none;
}
nav.header .bottom .actions .popup > div:not(.triangle).signup :hover {
  color: #e5ffd2;
}
nav.header .bottom .actions .popup > div:not(.triangle).login {
  background-color: #182450;
  color: #e5ffd2;
  text-decoration: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
nav.header .bottom .actions .popup > div:not(.triangle).login :active,
nav.header .bottom .actions .popup > div:not(.triangle).login :visited,
nav.header .bottom .actions .popup > div:not(.triangle).login :link {
  color: #e5ffd2;
  text-decoration: none;
}
nav.header .bottom .actions .popup > div:not(.triangle).login :hover {
  color: #9bce77;
}
nav.header .bottom .actions .popup .triangle {
  margin-left: 20px;
  width: 0px;
  border: transparent 20px solid;
  border-top-color: #182450;
}
nav.header .bottom .logo > img {
  height: 100%;
}

@media screen and (max-width: 550px) {
  nav.header {
    position: absolute;
    background-color: transparent;
    z-index: 401;
    pointer-events: none;
    padding: 0px;
    width: calc(100% - 60px);
    height: 100%;
  }
  nav.header .top {
    padding: 30px;
  }
  nav.header .top > .search > input {
    pointer-events: auto;
  }
  nav.header .top > .search > .filter {
    pointer-events: auto;
  }
  nav.header .top > .categories {
    display: none;
  }
  nav.header .top > .categories > button {
    pointer-events: auto;
  }
  nav.header .bottom {
    width: 100%;
    height: 30px;
    padding: 20px 30px;
    background-color: #e5ffd2;
  }
  nav.header .bottom > .actions > a,
  nav.header .bottom > .actions > .popup {
    pointer-events: auto;
  }
}
.map {
  width: calc(100% - 400px);
  height: 100%;
  position: relative;
}
.map #leaflet-map {
  height: 100%;
  width: 100%;
  outline: none;
}
.map #leaflet-map :focus {
  outline: none;
}
.map #location-crosshair {
  width: 100%;
  height: calc(100% - 2px);
  margin: 2px 0px;
}
.map .icon {
  position: absolute;
  right: 10px;
  height: 50px;
  bottom: 10px;
  z-index: 700;
}
.map .icon img {
  height: 100%;
}

.popup-img-map {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.leaflet-popup-content-wrapper {
  padding: 0px !important;
}

.leaflet-popup-content {
  width: unset !important;
  margin: 0px !important;
}

.leaflet-popup-close-button span {
  color: white !important;
}

.popup-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
  overflow: hidden;
  width: 250px;
  background-color: #f6fff5;
  border: black 1px solid;
}
.popup-container > img {
  width: 100%;
}
.popup-container > h2 {
  margin: 0px;
  padding: 0px;
}
.popup-container > p {
  text-align: left;
  margin: 0px !important;
  padding: 0px 10px;
}
.popup-container > table {
  width: 95%;
}
.popup-container > table tbody {
  width: 100%;
}
.popup-container > table tbody tr {
  width: 100%;
  background-color: #e5ffd2;
}
.popup-container > table tbody tr td:first-child {
  width: 30%;
}
.popup-container .actions {
  width: calc(100% - 30px);
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
  padding: 0px 15px;
}
.popup-container .actions span {
  color: #9bce77;
}
.popup-container .actions .icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  height: 70%;
}
.popup-container .actions .icons a {
  cursor: pointer;
  height: 100%;
}
.popup-container .actions .icons a img {
  height: 100%;
}
.popup-container .actions .icons a.grey {
  cursor: default;
}
.popup-container .actions .icons a.grey img {
  opacity: 0.2;
}

@media screen and (max-width: 550px) {
  .map {
    width: 100%;
  }
  .map .icon {
    bottom: 80px;
  }
}
div.sign-up {
  background-color: #9bce77;
  width: 45%;
  height: 100vh;
}
div.sign-up h1 {
  text-align: center;
  padding-top: 8vh;
  margin-bottom: 0;
  color: #182450;
  font-weight: 600;
  font-size: 40px;
  margin: 0;
}
div.sign-up #form {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
div.sign-up #form label {
  color: #182450;
  padding-left: 1vw;
  font-weight: 500;
}
div.sign-up #form input {
  background-color: #e5ffd2;
  border: 0.5px solid #e5ffd2;
  border-radius: 22px;
  box-shadow: rgb(91, 91, 91) 0.1em 0.1em 0.2em;
}
div.sign-up #button {
  display: flex;
  margin-top: 30px;
}
div.sign-up #button label {
  margin-right: 2vw;
  font-size: 12px;
  font-weight: 300;
}
div.sign-up #button .button {
  background-color: #182450;
  border: none;
  border-radius: 22px;
  padding: 5px 55px;
  color: white;
}
div.sign-up .img_g {
  width: 25px;
  background-color: #E5FFD2;
  border-radius: 30px;
  padding: 5px;
}
div.sign-up .signup_error {
  background-color: #ffcccc;
  border-radius: 10px;
  padding: 10px;
  margin: 10px;
  color: #ff0000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main_authenticate {
  font-family: "Poppins";
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: 2fr 3fr;
  justify-items: center;
  align-content: center;
  background: linear-gradient(to right, #9BCE77 0%, #9BCE77 40%, #E5FFD2 40%, #E5FFD2 100%);
}

.left_authenticate {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-authenticate {
  color: #182450;
}

.form-authenticate label {
  font-size: 14pt;
  font-weight: bold;
  color: #182450;
}

.form-authenticate input[type=password], .form-authenticate input[type=email], .form-authenticate input[type=text] {
  width: 90%;
  background-color: #E5FFD2;
  border: none;
  outline: none;
  padding: 5px 15px;
  border-radius: 15pt;
  margin-top: 10px;
  margin-bottom: 10px;
}

.account-authenticate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: bold;
}

.authenticate a, a:active, a:visited {
  text-decoration: none;
  color: #182450;
}

.authenicate_l {
  background-color: #182450;
  color: #E5FFD2;
  border: none;
  padding: 5px 15px;
  border-radius: 15pt;
}

.left_authenticate h1 {
  font-weight: 900;
}

.right_authenticate {
  width: 80%;
}

.right_authenticate h2, p {
  text-align: center;
}

.logo-hidden-authenticate {
  margin-top: 25px;
  display: none;
}

.socials {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-top: 20px;
}

.socials img {
  width: 30px;
}

.logo-mobile {
  width: 80vw;
}

.login_error {
  background-color: #ffcccc;
  border-radius: 10px;
  padding: 10px;
  margin: 10px;
  color: #ff0000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 1023.9px) {
  .main_authenticate {
    background: #9BCE77;
  }
  .left_authenticate {
    grid-template-columns: 1fr;
    width: 100vw;
    justify-content: center;
    align-items: center;
  }
  .right_authenticate {
    display: none;
  }
  .logo-hidden-authenticate {
    display: block;
  }
}
.popup-img {
  max-width: 150px;
  display: grid;
  place-content: center;
  place-items: center;
  border-radius: 100%;
}

/* Chatbot Popup Button */
/* Chatbot Popup */
/* Chatbot Popup Button */
.open-chat-button {
  position: fixed;
  bottom: 20px;
  right: 90px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 9999;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #9bce77;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: white;
  font-size: 18px;
  outline: none;
  border: none;
}

/* Chatbot Popup */
.full-chat-block {
  width: 300px;
  background: white;
  text-align: center;
  overflow: auto;
  scrollbar-width: none;
  max-height: 0; /* Initially hide the chat popup */
  transition: max-height 0.2s ease-out;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  border-radius: 10px;
}

/* Show the chat popup when the 'show' class is added */
.chat-bar-collapsible {
  position: relative;
  bottom: 80px; /* Adjust this value to control the vertical position */
  right: 90px;
  z-index: 9999; /* Set a higher z-index to make it appear in front of the map */
  cursor: pointer; /* Add cursor style to indicate it's clickable */
  border-radius: 50%; /* Makes it round */
  text-align: center;
  line-height: 50px; /* Center content vertically */
}

/* Icon inside the button */
.collapsible {
  color: white;
  font-size: 18px;
  outline: none;
  border: none; /* Remove border */
  background: transparent; /* Remove background color */
}

.chat-title {
  position: fixed;
  display: flex;
  justify-content: center;
  background-color: #9bce77;
  color: white;
  font-size: 18px;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  z-index: 9999;
  width: 330px;
  display: block;
}

.chat-title.hide {
  display: none;
}

.full-chat-block {
  width: 350px;
  background: white;
  text-align: center;
  overflow: auto;
  scrollbar-width: none;
  height: max-content;
  transition: max-height 0.2s ease-out;
}

.outer-container {
  min-height: 500px;
  bottom: 0%;
  position: relative;
}

.chat-container {
  max-height: 600px;
  width: 100%;
  position: absolute;
  bottom: -95px;
  left: 0;
  scroll-behavior: smooth;
  hyphens: auto;
}

.chat-container::-webkit-scrollbar {
  display: none;
}

.chat-bar-input-block {
  display: flex;
  float: left;
  box-sizing: border-box;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  background-color: rgb(235, 235, 235);
  border-radius: 10px 10px 0px 0px;
  padding: 10px 0px 10px 10px;
}

.chat-bar-icons {
  display: flex;
  justify-content: space-evenly;
  box-sizing: border-box;
  width: 25%;
  float: right;
  font-size: 20px;
}

#chat-icon:hover {
  opacity: 0.7;
}

/* Chat bubbles */
#userInput {
  width: 75%;
}

.input-box {
  float: left;
  border: none;
  box-sizing: border-box;
  width: 100%;
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
  color: #000;
  background-color: white;
  outline: none;
}

.userText {
  color: white;
  font-family: Helvetica;
  font-size: 16px;
  font-weight: normal;
  text-align: right;
  clear: both;
}

.userText span {
  line-height: 1.5em;
  display: inline-block;
  background: #52ea78;
  padding: 10px;
  border-radius: 8px;
  border-bottom-right-radius: 2px;
  max-width: 80%;
  margin-right: 10px;
  animation: floatup 0.5s forwards;
}

.botText {
  color: #000;
  font-family: Helvetica;
  font-weight: normal;
  font-size: 16px;
  text-align: left;
}

.botText span {
  line-height: 1.5em;
  display: inline-block;
  background: #b4b5b4;
  padding: 10px;
  border-radius: 8px;
  border-bottom-left-radius: 2px;
  max-width: 80%;
  margin-left: 10px;
  animation: floatup 0.5s forwards;
}

@keyframes floatup {
  from {
    transform: translateY(14px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
@media screen and (max-width: 600px) {
  .full-chat-block {
    width: 100%;
    border-radius: 0px;
  }
  .chat-bar-collapsible {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  .collapsible {
    width: 100%;
    border: 0px;
    border-radius: 0px;
  }
  .chat-bar-icons {
    display: flex;
    justify-content: space-evenly;
    box-sizing: border-box;
    width: 15%;
    float: right;
    font-size: 20px;
  }
}
.sub-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 68px !important;
  padding-right: 68px !important;
}

.sub-form h1 {
  font-size: 64px;
  font-weight: 600;
  color: #182450;
}

.column {
  display: flex;
  flex-direction: column;
}

.sub-div {
  background-color: #9BCE77;
  margin: auto;
  height: 100vh;
  min-width: 764px;
  padding-top: 100px;
}

.side-div {
  width: 150px;
  max-width: 151px;
}

.sub-form input {
  width: 622px;
  height: 32px;
  border-radius: 52px;
  border: none;
}

.sub-form input[name=location], .sub-form input[name=season], .sub-form input[name=types] {
  width: 300px;
  text-align: center;
  margin-right: 20px;
}

#getLocationButton {
  width: 300px;
  height: 32px;
  border-radius: 52px;
  border: none;
  background-color: #182450;
  color: white;
}

.sub-form label[for=short_desc], .sub-form input[for=location], .sub-form input[for=location], .sub-form input[for=types], .sub-form input[for=season], .sub-form input[for=photo] {
  margin-bottom: 12px;
  margin-top: 12px;
  font-weight: 600;
  margin-left: 10px;
}

.input-group {
  display: flex;
  flex-direction: row;
  margin-right: 20px;
}

select[name=types] {
  width: 300px;
  height: 32px;
  border-radius: 52px;
  border: none;
}

.sub-form input[name=photo] {
  width: 622px;
  height: 32px;
  border-radius: 52px;
  border: none;
}

.row {
  display: flex;
  flex-direction: row;
}

.sub-form .photo-button {
  width: 622px;
  background-color: #182450;
  height: 32px;
  border-radius: 52px;
  color: white;
  border: none;
}

.button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 622px;
  margin-top: 25px;
}

.button-container > button {
  width: 210px;
  background-color: #182450;
  height: 32px;
  border-radius: 52px;
  color: white;
  margin-right: 10px;
  margin-left: 10px;
  border: none;
}

@media screen and (max-width: 1023.9px) {
  .sub-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center !important;
    width: 100%;
  }
  .sub-form h1 {
    font-size: 70px;
  }
  .sub-div {
    display: flex;
    align-items: flex-start;
    width: 100%;
  }
  .button-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 622px;
    margin-top: 25px;
  }
  .button-container > button {
    width: 300px;
    background-color: #182450;
    height: 32px;
    border-radius: 52px;
    color: white;
    margin-right: 10px;
    margin-left: 10px;
    border: none;
    margin-bottom: 20px;
  }
  .sub-form label[for=short_desc], .sub-form label[for=location], .sub-form label[for=location], .sub-form label[for=types], .sub-form label[for=season], .sub-form label[for=photo] {
    width: 622px;
    font-size: 50px;
  }
  .sub-form input[name=short_desc], .sub-form input[name=location] {
    height: 120px;
    font-size: 50px;
  }
  .row {
    display: block;
  }
  #getLocationButton {
    height: 120px;
    font-size: 40px;
  }
  #select {
    height: 120px;
    font-size: 35px;
    width: 622px;
  }
  .sub-form .photo-button {
    height: 120px;
    font-size: 40px;
  }
  .button-container > button {
    height: 120px;
    width: 622px;
    font-size: 40px;
  }
  .column > select > option {
    height: 100px !important;
  }
  .logo-mobile {
    margin-top: 40px;
    width: 300px;
  }
}
@media screen and (min-width: 1024.9px) {
  .logo-mobile {
    display: none;
  }
}
.faq-div {
  background-color: #e5ffd2;
  width: 20%;
  max-height: 200%;
}

.faq_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #9bce77;
}
.faq_content > .search {
  position: relative;
  margin-bottom: 20px;
}
.faq_content > .search > input {
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border-radius: 60px;
  background-color: #182450;
  color: #f6fff5;
  padding: 15px;
  margin: 0px;
  outline: none;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.faq_content > .search > img {
  position: absolute;
  top: 0px;
  right: 15px;
  height: 100%;
  width: 5%;
}
.faq_content h1 {
  color: #182450;
  margin-top: 70px;
  margin-bottom: 60px;
  font-weight: 600;
  font-size: 40px;
}
.faq_content h3 {
  font-size: 1.3rem;
}
.faq_content #text {
  color: #182450;
  margin-top: 50px;
  text-decoration: underline;
}
.faq_content .faq_questions {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #182450;
}
.faq_content summary {
  width: 100%;
  display: flex;
  justify-content: center;
}
.faq_content details[open=""] summary {
  text-decoration: underline;
}
.faq_content details p {
  padding: 0px 50px;
}

.faq_content input[type=text] {
  background: #182450;
  border-radius: 10px;
  width: 400px;
  height: 20px;
  top: 236px;
  left: 615px;
}

.button {
  background-color: #182450;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 90px;
  border-radius: 80px;
  margin-top: 30px;
  text-decoration: none;
  gap: 10px;
  margin-bottom: 30px;
}

.button:hover {
  color: white;
}

.arrow {
  width: 20px;
}

@media screen and (max-width: 700px) {
  .faq-div {
    display: none;
  }
}
body {
  background-color: #E5FFD2;
}

.main {
  background-color: #9BCE77;
  margin: auto;
  width: 50vw;
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;
}
.main h1 {
  padding-top: 0;
  margin-top: 4vh;
  margin-bottom: 4vh;
}

.alter-ac-form form {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.alter-ac-form form label {
  font-size: 14pt;
  font-weight: bold;
  color: #182450;
}
.alter-ac-form form input[type=text],
.alter-ac-form form input[type=email],
.alter-ac-form form input[type=password] {
  width: 96.5%;
  background-color: #E5FFD2;
  border: none;
  outline: none;
  padding: 5px 15px;
  border-radius: 15pt;
  margin-top: 10px;
  cursor: pointer;
  margin-bottom: 15px;
}
.alter-ac-form form button {
  background-color: #182450;
  border: none;
  border-radius: 22px;
  padding: 5px 55px;
  color: white;
}

.container_aa {
  display: flex;
  justify-content: space-between;
}

.left_side, .right_side {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.left_side {
  display: flex;
  justify-content: space-evenly;
}

.right_side {
  margin: 35px;
}
.right_side label {
  text-align: center;
}
.right_side img {
  width: 100px;
  height: 100px;
  display: flex;
  margin: auto;
}

.right_side button {
  display: inline;
  margin-top: 35.5px;
}

.small-logo img {
  position: absolute;
  right: 0;
  max-width: 10%;
  right: 5%;
  bottom: 5%;
}

.buttons-alter {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-top: 25px;
}

.logo-light-alter img {
  display: none;
}

@media screen and (max-width: 1023.9px) {
  body {
    background-color: #9BCE77;
  }
  .main {
    background-color: transparent;
    width: 100vw;
    padding-bottom: 0;
    margin-right: 60px;
    margin-left: 60px;
  }
  .main .container_aa {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .main h1 {
    font-size: 60pt;
  }
  .small-logo img {
    display: none;
  }
  .left_side, .right_side {
    width: 100%;
  }
  .right_side {
    margin: 0;
    display: flex;
    align-items: center;
  }
  .right_side img {
    width: 200px;
    height: 200px;
  }
  .alter-ac-form form label {
    font-size: 30pt;
  }
  .alter-ac-form form input[type=text], .alter-ac-form form input[type=email], .alter-ac-form form input[type=password] {
    padding: 15px 15px;
    border-radius: 25px;
  }
  .alter-ac-form form button {
    width: 40%;
    font-size: 20pt;
    padding: 15px 15px;
    border-radius: 25px;
    width: 100%;
  }
  .buttons-alter {
    flex-direction: column;
    gap: 12.5px;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
  }
  .buttons-alter button {
    margin: 10px 0;
  }
  .logo-light-alter img {
    width: 50vw;
    display: block;
    margin: 4vh auto;
  }
}
.fourofour_main {
  display: grid;
  grid-template-columns: 2fr 3fr;
  justify-items: center;
  align-content: center;
  background: linear-gradient(to right, #9BCE77 0%, #9BCE77 40%, #E5FFD2 40%, #E5FFD2 100%);
}

.fourofour_left {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.fourofour {
  font-size: 70pt;
  font-family: "Poppins";
  font-weight: 600;
  color: rgb(24, 36, 80);
  margin-top: 0;
  margin-bottom: 0;
  align-self: center;
}

.go_back {
  font-size: 15pt;
  font-family: "Poppins";
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-align: center;
  align-self: center;
  background-color: #182450;
  padding: 12pt;
  width: 120pt;
  border-radius: 25pt;
  text-decoration: none;
}

.sorry_we_c {
  font-size: 20pt;
  font-family: "Poppins";
  font-weight: 600;
  color: rgb(24, 36, 80);
  align-self: center;
  text-align: center;
}

.logo_404 {
  width: 50vw;
  align-self: center;
}

.error_main {
  display: grid;
  grid-template-columns: 2fr 3fr;
  justify-items: center;
  align-content: center;
  background: linear-gradient(to right, #9BCE77 0%, #9BCE77 40%, #E5FFD2 40%, #E5FFD2 100%);
}

.error_left {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.error {
  font-size: 70pt;
  font-family: "Poppins";
  font-weight: 600;
  color: rgb(24, 36, 80);
  margin-top: 0;
  margin-bottom: 0;
  align-self: center;
}

.go_back {
  font-size: 15pt;
  font-family: "Poppins";
  font-weight: 600;
  color: rgb(255, 255, 255) !important;
  text-align: center;
  align-self: center;
  background-color: #182450;
  padding: 12pt;
  width: 120pt;
  border-radius: 25pt;
  text-decoration: none;
}

.error_msg {
  font-size: 20pt;
  font-family: "Poppins";
  font-weight: 600;
  color: rgb(24, 36, 80);
  align-self: center;
  text-align: center;
}

.logo_error {
  width: 50vw;
  align-self: center;
}

body,
html {
  margin: 0px;
  padding: 0px;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: row;
}

* {
  font-family: "Poppins", sans-serif;
}

* {
  font-family: "Dancing Script", cursive;
  font-family: "Poppins", sans-serif;
}

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