body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif !important;
}

.auth__primary_button {
  width: 100%;
  border: none;
  padding: 14px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
  background-color: #ffffff;
}

.auth__primary_button:hover {
  background: #0052a3;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.auth__primary_button:disabled {
  background: #9ecfff !important;
  transform: translateY(-2px);
}

.auth__button_outline {
  border: 1px solid rgb(205, 205, 205);
  font-weight: 500;
  font-size: 16px;
  padding: 11px;
  color: #001529;
}

.auth__button_outline:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(47, 101, 156, 0.3);
}

.left_side {
  height: 100vh;
  width: 50vw;
  color: white;
  position: fixed;
  text-align: left;
  padding: 60px;
  padding-top: 34vh;
  min-height: 0 !important;
  display: inline-block;
  background: #0033ff;
  background: #1745ff;
  background: linear-gradient(180deg, #0d85fde6 0%, #003d7a 50%, #001529 100%);
}

.left_side__title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  position: relative;
  z-index: 5;
}

.left_side__subtitle {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 40px;
}

.left_side__footer {
  position: fixed;
  bottom: 15vh;
  font-weight: 300;
  left: 60px;
  margin-bottom: -50px;
  color: white;
}

.right_side {
  text-align: center;
  margin-left: 50vw;
  padding: 0;
}

.right_side__container {
  width: 420px;
  height: 100vh;
  margin: auto;
  text-align: left;
  align-content: center;
}

.right_side__content {
  height: 125vh !important;
  text-align: left;
}

.right_side__title {
  font-size: 32px;
  font-weight: 700;
  color: #0b0b0b;
  margin-bottom: 5px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif !important;
}

.right_side__subtitle {
  font-size: 14px;
  font-family: sans-serif;
  margin-bottom: 40px;
}

.form_input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s;
  background: #fafafa;
}

.form_input:focus {
  outline: none;
  border-color: #0066cc;
  background: #ffffff;
}

.right_side__input_label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 2px;
}

.right_side__forgot_password {
  font-size: 14px;
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.right_side__top_section_student {
  width: 400px;
  margin: 16vh auto -26vh auto;
}

.right_side__title_students {
  font-size: 30px;
  font-weight: bold;
  line-height: 34px;
  text-align: center;
  color: black;
}

.right_side__students_link {
  position: relative;
  z-index: 999;
  font-weight: bold;
  color: #0066cc;
}

.forgot_password__container {
  width: 420px;
  margin: 30vh auto 0;
  text-align: left;
}

.left_side__register {
  padding-top: 34vh !important;
  height: 100vh;
  margin-bottom: -10px;
}

.register_title {
  font-size: 48px;
}

.register_subtitle {
  font-size: 16px;
}

.register_value__container {
  position: relative;
  margin-top: 60px;
}

.register_value__section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.register_value__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.register_value__text_container {
  margin: auto 0;
}

.register_value__content {
  flex: 1;
  padding-top: 8px;
}

.register_value__content_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.register_value__content_subtitle {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
}

.text_white {
  color: #fff;
  opacity: 0.9;
}

@media (max-height: 900px) {
  .right_side__content {
    height: 142vh !important;
    text-align: left;
  }

  .right_side__top_section_student {
    width: 400px;
    margin: 16vh auto -20vh auto;
  }
}

@media (max-width: 770px) {
  .left_side {
    width: 100%;
    text-align: center;
    padding: 20px;
    padding-top: 10vh;
    height: 30vh;
  }

  .left_side__title {
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
  }

  .left_side__subtitle {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
  }

  .left_side__footer {
    display: none;
  }

  .left_side__register {
    padding-top: 6vh !important;
  }

  .register_title {
    font-size: 28px;
    padding: 0 0 0 3vw;
  }

  .register_subtitle {
    font-size: 12px;
    padding: 0 3vw;
  }

  .register_value__container {
    display: none;
  }

  .right_side {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .right_side__container {
    margin: 2vh auto 8vh;
    width: 340px;
  }

  .right_side__top_section_student {
    margin: 2vh auto;
    width: 340px;
  }

  .right_side__title_students {
    line-height: 22px;
    font-size: 16px;
    font-weight: bold;
    color: black;
  }

  .right_side__title {
    font-size: 30px;
  }

  .right_side__subtitle {
    font-size: 12px;
  }

  .forgot_password__container {
    width: 350px;
    margin: 5vh auto 0;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .left_side__title {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .left_side__subtitle {
    font-size: 10px;
  }
}

.recaptcha-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.recaptcha-title {
  @media (max-width: 480px) {
    margin-bottom: 10px;
  }
}
