body {
  margin: 0;
  box-sizing: border-box;
  background-color: #f6f7f8;
  max-width: 1920px;
  font-family: "Inter";
}

.header {
  font-weight: 400;
  font-size: 20px;
  font-family: "Inter";
  max-width: 1920px;
  height: 130px;
  display: flex;
  justify-content: flex-end;
  padding-right: 150px;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: #f6f7f8;
}

.sidebar {
  width: 232px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0px;
  animation: BackColor_Deskstop 2s;
}

@keyframes BackColor_Deskstop {
  0% {
    position: absolute;
    top: 0;
    left: 0;
    height: 85%;
    width: 100%;
    background-color: #f6f7f8;
  }
  20% {
    position: absolute;
    top: 0;
    left: 0;
    height: 85%;
    width: 100%;
    background-color: #f6f7f8;
  }
  100% {
    position: absolute;
    top: 0;
    left: 0;
    height: 85%;
    width: 100%;
  }
}

.sidebar_links a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.sidebar_links a:hover {
  background-color: aqua;
}

.sidebar_links {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: flex-start;
}

.sidebar_bottom {
  height: 5vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  color: white;
}

.icons_sidebar {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

.main {
  display: flex;
  min-height: 100vh;
}

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

.help_initials {
  display: flex;
  align-items: center;
}

.help_initials_mobile {
  display: none;
  align-items: center;
  gap:40px;
}

.content {
  background-color: #f6f7f8;
  height: 70vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.login_base {
  display: flex;
  background-color: white;
  width: 55vw;
  height: fit-content;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 30px;
  max-width: 600px;
}

.sign_up_base {
  display: flex;
  background-color: white;
  width: 75vw;
  height: fit-content;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 30px;
  max-width:800px;
}

.sign_up_headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}

.login_input {
  color: black;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  padding: 12px 21px 12px 21px;
  margin: 12px;
  max-width: 440px;
  width: 40vw;
  height: 18px;
}

.login_button_blue {
  font-weight: bolder;
  color: white;
  background-color: #2a3647;
  border: 1px;
  border-color: #2a3647;
  border-radius: 8px;
  border-style: solid;
  padding: 8px 18px 8px 18px;
  cursor: pointer;
  margin-right: 24px;
  margin-bottom: 62px;
}

.login_button_blue:hover {
  background-color: #29abe2;
  border-color: #29abe2;
  /* box-shadow: 0px 4px 0px 0px #00000030; */
}

.login_button_wihte {
  font-weight: bolder;
  color: #2a3647;
  background-color: white;
  border: 1px;
  border-color: #d1d1d1;
  border-radius: 8px;
  border-style: solid;
  padding: 8px 18px 8px 18px;
  cursor: pointer;
}

.login_button_wihte:hover {
  color: #29abe2;
  background-color: white;
  border: 1px;
  border-color: #29abe2;
  border-style: solid;
  box-shadow: 0px 4px 0px 0px #00000030;
}

.login_font {
  font-family: "Inter";
  font-size: 16px;
  color: #0000;
  margin-top: 48px;
  margin-bottom: 48px;
}

.font_color {
  color: #000000;
  font-size: 62px;
  font-family: "Inter";
  padding: 24px 0 24px 0;
  border-bottom: #29abe2 2px solid;
}

.not_user {
  width: 200px;
}

.button_blue {
  color: white;
  background-color: #2a3647;
  border: #2a3647;
  border-radius: 8px;
  width: 84px;
  height: 36px;
  cursor: pointer;
}

.button_blue:hover {
  background-color: #29abe2;
  border: #29abe2;
  box-shadow: 0px 4px 0px 0px #00000030;
}

.blue_signed_up {
  color: white;
  background-color: #2a3647;
  border: #2a3647;
  border-radius: 8px;
  width: 220px;
  height: 36px;
  cursor: pointer;
  display: none;
}

.blue_signed_up:hover {
  background-color: #29abe2;
  border: #29abe2;
  box-shadow: 0px 4px 0px 0px #00000030;
}

.pading {
  padding-right: 16px;
}

.pricacy_policy_font {
  color: #a8a8a8;
  text-decoration: none;
}

.checkbox {
  cursor: pointer;
}

.checkbox_container {
  display: flex;
  margin: 12px 55% 16px 0px;
}

.checkbox_I_Acpept {
  display: flex;
  margin: 12px 0 16px 0px;
}

.checkbox_font {
  font-family: "Inter";
  font-size: 16px;
  color: #000000;
  margin-left: 8px;
}

.privacy_policy_button {
  color: #29abe2;
  font-family: "Inter";
  font-size: 16px;
  cursor: pointer;
  margin: 1em 0 1em 6px;
  text-decoration: none;
}

.pleaseTurnOnEdge {
  display: none;
  background-color: rgba(0, 0, 0, 0.705);
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.error-message {
  color: #ff8190;
  font-size: 12px;
  border-radius: 10px;
  padding: 12px;
  margin: 12px;
  width: 80%;
}

.d-none {
  display: none;
}

.headerLogoJoin {
  display: none;
}

.join_Logo_Desktop {
  width: 100px;
  height: 10vh;
  position: absolute;
  top: 3vh;
  left: 4vw;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  animation: Logo_Desktop 2s;
}

@keyframes Logo_Desktop {
  0% {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25vw;
    height: 25vh;
    object-fit: contain;
    transform: translate(-50%, -50%);
  }
  20% {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25vw;
    height: 25vh;
    object-fit: contain;
    transform: translate(-50%, -50%);
  }
  100% {
    position: absolute;
    width: 100px;
    height: 10vh;
    top: 3vh;
    left: 4vw;
    object-fit: contain;
  }
}

.join_Logo_Mobile {
  display: none;
  top: 2vh;
  left: -6vw;
  width: 100px;
  height: 6vh;
  object-fit: contain;
  fill: #2a3647;
  animation: join_Logo_Mobile 2s;
}

@keyframes join_Logo_Mobile {
  0% {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25vw;
    height: 25vh;
    object-fit: contain;
    fill: white;
    transform: translate(-50%, -50%);
  }
  20% {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25vw;
    height: 25vh;
    object-fit: contain;
    fill: white;
    transform: translate(-50%, -50%);
  }
  100% {
    position: absolute;
    top: 4vh;
    left: 8vw;
    width: 100px;
    height: 6vh;
    object-fit: contain;
    fill: #2a3647;
  }
}

.backColor_Mobil {
  display: none;
  top: 2vh;
  left: -6vw;
  width: 100px;
  height: 6vh;
  object-fit: contain;
  animation: backColor_Mobil 2s;
}

@keyframes backColor_Mobil {
  0% {
    background-color: #2a3647;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  20% {
    background-color: #2a3647;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  100% {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.error-message {
  color: red;
  font-size: 0.875em;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 700px) {
  .sidebar {
    display: none;
  }
  .headerLogoJoin {
    display: block;
    margin-left: 16px;
  }
  .join_Logo_Mobile {
    display: block;
    position: absolute;
  }
  .backColor_Mobil {
    display: block;
    position: absolute;
  }
  .help_initials {
    display: none;
  }
  /* .help_initials_mobile {
    display: flex;
  } */
  .not_user_mobile {
    margin: 46px 26px 46px 0;
  }
  .header {
    justify-content: flex-start;
    margin: 0 0 3vh 20vw;
  }
  .login_base {
    width: 100vw;
    /* height: 64vH; */
  }
  .checkbox_container {
    margin: 12px 30% 16px 0px;
  }
  .font_color {
    font-size: 42px;
  }
  .sign_up_headline {
    width: 50vw;
  }
  .sign_up_base{
    width: 100vW;
  }
}

/* @media (max-height: 1100px) {
  .login_base {
    height: 60vh;
  }
} */

@media (max-height: 900px) {
  /* .login_base {
    height: 57vh;
  } */
  .font_color {
    padding: 14px 0 14px 0;
  }
  /* .sign_up_base {
    height: 65vh;
  } */
}

@media (max-height: 800px) {
  .not_user_mobile {
    margin: 26px 26px 26px 0;
  }
  .login_button_blue {
    margin-bottom: 18px;
  }
  .checkbox_I_Acpept {
    margin: 0;
  }
  /* .sign_up_base {
    height: 430px;
  } */
  .checkbox_container {
    margin: 0px 30% 0px 0px;
  }
  .login_input {
    margin: 6px;
  }
  /* .login_base {
    height: 54vh;
  } */
  .font_color {
    padding: 0px 0 14px 0;
    margin: 12px 0 12px 0;
  }
}

@media (max-height: 650px) {
  .content {
    height: 80vh;
  }
  .header {
    height: 100px;
  }
}

@media (max-height: 600px) {
  .sidebar_bottom {
    height: 9vh;
  }
  .font_color {
    font-size: 28px;
    padding: 2px;
  }
  .login_button_blue {
    margin-bottom: 20px;
  }
  .not_user_mobile {
    margin: 16px 26px 16px 0;
  }
  .pricacy_policy_font {
    padding: 12px 16px 12px 16px;
  }
  /* .sign_up_base {
    height: 350px;
  } */
  .login_input {
    margin: 0;
    height: 20px;
  }
}

@media (max-height: 550px) {
  .login_input {
    margin: 0;
    height: 20px;
  }
  .login_button_blue {
    margin: 0;
  }
  .header {
    height: 64px;
  }
}

@media (max-height: 500px) {
  /* .login_base {
    height: 58vh;
  } */
}

@media (max-width: 450px) {
  .font_color {
    font-size: 28px;
  }
  .sign_up_base {
    width: 100vw;
  }
  .login_input {
    width: 80%;
    padding:8px 4px;
  }
}

@media (max-height: 500px) {
  .pleaseTurnOnEdge {
    display: flex;
  }
}
