html,
body {
  background-color: #e9f3f9;
  background-image: url(/images/bg-half.png), url(/images/bg-half2.png);
  background-position: left top, right top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  height: 100%;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.wrapper {
  position: relative;
  flex-grow: 1;
}

.error-match {
  margin-top: 20px;
  display: none;
  color: red;
  text-align: center;
}

/* -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_--_-_-_-_-_-_-_-_-_-_ */

.fake-top-bar {
  position: relative;
  margin-bottom: 30px;
  min-height: 80px;
  top: 2%;
}

.top-bar {
  background-color: #ffffff;
  position: fixed;
  top: 2%;
  left: 2%;
  right: 2%;
  margin-bottom: 30px;
  display: flex;
  width: 96%;
  min-height: 80px;
  border-radius: 15px;
  align-items: center;
  justify-content: right;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 1000;
}

.top-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  height: 50px;
  color: #2d67e0;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 15px;
  font-family: "Krona One", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
}

.top-bar-img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 2%;
}

.top-bar-img img {
  width: auto;
  height: 100%;
}

.right-items {
  visibility: visible;
  float: right;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.right-items a {
  margin-right: 0;
}

@media (max-width: 790px) {
  .right-items {
    visibility: hidden;
  }
}

.page-button {
  height: 50px;
  padding: 10px 10px;
  background-color: #ffffff;
  border-radius: 15px;
  color: #2d67e0;
  font-family: "Krona One", sans-serif;
  cursor: pointer;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  border: 0;
}

.page-button:hover {
  background-color: #dde9ff;
}

.current-button {
  color: #e0584c;
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.login-button {
  height: 50px;
  padding: 10px 10px;
  text-align: center;
  background-color: #2d67e0;
  border-radius: 15px;
  color: #ffffff;
  font-family: "Krona One", sans-serif;
  cursor: pointer;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  width: 100%;
  min-width: 170px;
}

.login-button:hover {
  background-color: #3f2de1;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.5);
}

.separator {
  width: 10px;
  height: 10px;
  border-radius: 25px;
  background-color: #dde9ff;
}

.sphere {
  margin: 5px 10px 5px 0;
  width: 20px;
  height: 20px;
  border-radius: 25px;
  pointer-events: none;
}

.menu-button {
  margin-right: 10px;
  padding-left: 10px;
  display: flex;
  flex-direction: row;
}

.menu-button:hover {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.drop-menu {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  position: fixed;
  z-index: 1000;
  border-radius: 25px;
  top: 120px;
  right: 3%;
  min-width: 250px;
  width: 50%;
  height: auto;
  background-color: white;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.drop-menu p {
  color: red;
}

@media (min-width: 790px) {
  .drop-menu {
    visibility: hidden;
  }

  .menu-button {
    pointer-events: none;
  }
}

.dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}

.dropdown-content-user {
  font-family: "Krona One", sans-serif;
  font-size: 13px;
  display: none;
  position: absolute;
  top: 100%;
  padding-top: -40px;
  background-color: #3f2de1;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 999;
  border-radius: 0 0 15px 15px;
  height: fit-content;
  width: 150px;
  overflow: hidden;
}

.dropdown-content-user a {
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  justify-content: left;
  margin: 0;
  max-width: 90%;
  height: fit-content;
  font-size: 10px;
}

.dropdown-content-user p {
  width: 100%;
  text-align: center;
  color: #5dd1b7;
  font-weight: bold;
}

.dropdown-content-user a:hover {
  color: #dde9ff;
}

.showMenu {
  display: flex;
  justify-content: left;
  align-items: left;
  flex-direction: column;
}

/* -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_--_-_-_-_-_-_-_-_-_-_ */

.main-box {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  top: 50px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  width: auto;
  max-height: auto;
  border-radius: 25px;
  max-width: 80%;
  margin-bottom: 10%;
}

.left-part {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
}

.right-part {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-box .left-part h1 {
  text-align: center;
  color: #2d67e0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: medium;
  font-weight: 700;
  font-size: 3vw;
  letter-spacing: 0.1em;
  padding-bottom: 1vw;
}

.main-box .left-part h3 {
  text-align: center;
  color: #2d67e0;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2vw;
  letter-spacing: 0.1em;
}

.main-box img {
  max-width: auto;
  max-height: 80%;
  border-radius: 25px;
  display: none;
}

@media (max-width: 1040px) {
  /* adjust the breakpoint as needed */
  .left-part,
  .right-part {
    flex-basis: 50%; /* make both divs take up the full width */
  }
  .main-box .left-part h1 {
    text-align: center;
    font-size: 5vw;
    padding-bottom: 10px;
    width: 90%;
  }

  .main-box .left-part h3 {
    text-align: center;
    font-size: 3vw;
    width: 90%;
  }

  .main-box img {
    margin-top: 20%;
    max-width: 90%;
    max-height: auto;
  }
}

/* -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_--_-_-_-_-_-_-_-_-_-_ */

.bottom-bar {
  position: relative;
  left: 0;
  bottom: 0;
  padding: 0;
  margin: 0;
  margin-top: 30px;
  padding-top: 10px;
  padding-bottom: 3px;
  width: 100%;
  height: auto;
  background: rgba(0, 102, 255, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bottom-bar .row1 {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.bottom-bar .row2 {
  margin-top: 20px;
  text-align: center;
  width: 60%;
  text-align: center;
  color: #2d67e0;
  text-decoration: none;
  font-family: "Krona One", sans-serif;
  font-style: normal;
  font-size: 12px;
}

.bottom-bar .row2 i {
  color: #e0584c;
  font-size: 15px;
}

.bottom-bar .row2 a {
  text-decoration: none;
  color: #2d67e0;
}

.bottom-bar .links {
  display: flex;
  flex-direction: column;
}

.bottom-bar .links a {
  margin-top: auto;
  margin-bottom: auto;
  text-align: center;
  color: #2d67e0;
  text-decoration: none;
  font-family: "Krona One", sans-serif;
  font-style: normal;
  font-weight: lighter;
  font-size: 13px;
}

.bottom-bar .links .title {
  width: auto;
  font-size: 15px;
  font-weight: bolder;
}

.bottom-bar i {
  color: #2d67e0;
  font-size: 24px;
}

.medias {
  display: flex;
  flex-direction: row;
  width: 30%;
  height: 24px;
  margin-top: 20px;
  justify-content: space-evenly;
}

.bottom-bar a:hover {
  text-decoration: underline;
}

@media (max-width: 790px) {
  .bottom-bar .links .title {
    font-size: 3vw;
  }

  .bottom-bar .links a {
    font-size: 2vw;
  }

  .bottom-bar .row2 {
    font-size: 2vw;
  }

  .medias {
    width: 40%;
  }

  .bottom-bar img {
    width: 70%;
    max-width: 24px;
  }

  .bottom-bar {
    flex-direction: column;
    min-height: auto;
  }

  .medias {
    position: relative;
    left: 0;
    margin-top: 10px;
  }
}

.loader {
  margin-top: 20px;
  margin-bottom: 3%;
  border: 8px solid rgba(0, 0, 0, 0.1);
  border-left-color: #3498db;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

::-webkit-input-placeholder {
  color: rgb(26, 35, 232, 0.73);
  font-weight: bold;
}
::-moz-placeholder {
  color: rgb(26, 35, 232, 0.73);
  font-weight: bold;
}

:-ms-input-placeholder {
  color: rgb(26, 35, 232, 0.73);
  font-weight: bold;
}
:-moz-placeholder {
  color: rgb(26, 35, 232, 0.73);
  font-weight: bold;
}
