.login_error {
  color: #d60000;
  font-size: 12px;
  margin-top: 6px;
  padding-left: 2px;
  line-height: 1.4;
}

.root_container {
  background: #E8EDE8;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}
.root_container::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(27, 67, 50, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(27, 67, 50, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.root_container .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 960px;
  min-height: 680px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.08), 0 32px 64px rgba(27, 67, 50, 0.12);
  position: relative;
  z-index: 1;
}
.root_container .left_side {
  background: var(--primary-color-85);
  display: flex;
  flex-direction: column;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.root_container .left_side::before, .root_container .left_side::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.root_container .left_side::before {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -80px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.root_container .left_side::after {
  width: 180px;
  height: 180px;
  bottom: 60px;
  right: -50px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.root_container .left_side .logo {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
.root_container .left_side .logo img {
  object-fit: contain;
  object-position: center;
  height: 50px;
  width: 150px;
  display: block;
}
.root_container .left_side .brand_wrap {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.root_container .left_side .brand_wrap .headline {
  font-size: 34px;
  font-weight: 800;
  color: var(--grayscale-color-0);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.root_container .left_side .brand_wrap .headline em {
  font-style: normal;
  color: #74C69D;
}
.root_container .left_side .brand_wrap .tagline {
  font-size: 14px;
  color: var(--grayscale-color-20);
  line-height: 1.8;
  margin-bottom: 20px;
}
.root_container .left_side .brand_wrap .status_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.root_container .left_side .brand_wrap .status_grid .status_card {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  text-align: right;
}
.root_container .left_side .brand_wrap .status_grid .status_value {
  font-size: 24px;
  font-weight: 800;
  color: var(--grayscale-color-0);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 6px;
}
.root_container .left_side .brand_wrap .status_grid .status_value span {
  font-size: 14px;
  font-weight: 600;
}
.root_container .left_side .brand_wrap .status_grid .status_label {
  font-size: 0.8125rem;
  color: var(--grayscale-color-20);
  font-weight: 400;
}
.root_container .left_side .footer {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: var(--grayscale-color-20);
  line-height: 1.7;
}
.root_container .right_side {
  background: var(--grayscale-color-0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 52px;
}
.root_container .right_side .login_head {
  margin-bottom: 20px;
}
.root_container .right_side .login_head .login_title {
  color: var(--grayscale-color-90);
  font-weight: 700;
  margin-bottom: 6px;
}
.root_container .right_side .login_head .login_sub {
  font-size: 14px;
  color: var(--grayscale-color-50);
}
.root_container .right_side .type_card_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.root_container .right_side .type_card_wrap .type_card {
  border: 1.5px solid var(--grayscale-color-30);
  border-radius: var(--radius-lg);
  padding: 16px 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.25s;
  background: var(--grayscale-color-0);
  text-align: left;
  position: relative;
}
.root_container .right_side .type_card_wrap .type_card:hover {
  border-color: var(--grayscale-color-50);
  background: var(--grayscale-color-10);
}
.root_container .right_side .type_card_wrap .type_card.on {
  border-color: #2D6A4F;
  background: rgba(27, 67, 50, 0.03);
}
.root_container .right_side .type_card_wrap .type_card.on .check_mark {
  display: flex;
}
.root_container .right_side .type_card_wrap .type_card.on .type_icon {
  background: #2D6A4F;
}
.root_container .right_side .type_card_wrap .type_card.on .type_icon .material-symbols-outlined {
  color: var(--grayscale-color-0);
  font-variation-settings: "FILL" 1, "wght" 700;
}
.root_container .right_side .type_card_wrap .type_card .check_mark {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  background: #2D6A4F;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.root_container .right_side .type_card_wrap .type_card .check_mark .material-symbols-outlined {
  font-size: 12px;
  color: var(--grayscale-color-0);
  font-variation-settings: "FILL" 1, "wght" 700;
}
.root_container .right_side .type_card_wrap .type_card .type_icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--grayscale-color-15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: background 0.2s;
}
.root_container .right_side .type_card_wrap .type_card .type_icon .material-symbols-outlined {
  font-size: 20px;
  color: var(--grayscale-color-70);
  font-variation-settings: "FILL" 0, "wght" 400;
}
.root_container .right_side .type_card_wrap .type_card .type_name {
  font-size: 16px;
  font-weight: 700;
  color: var(--grayscale-color-90);
  margin-bottom: 5px;
}
.root_container .right_side .type_card_wrap .type_card .type_description {
  font-size: 12px;
  color: var(--grayscale-color-50);
  line-height: 1.4;
}
.root_container .right_side #loginForm .input_box, .root_container .right_side .form_panel .input_box {
  margin-bottom: 12px;
}
.root_container .right_side #loginForm .input_box .input_text, .root_container .right_side .form_panel .input_box .input_text {
  width: 100%;
  height: 46px;
  border-radius: var(--radius-lg);
  padding: 0 14px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.root_container .right_side #loginForm .input_box .input_text::placeholder, .root_container .right_side .form_panel .input_box .input_text::placeholder {
  color: var(--grayscale-color-30);
  font-size: 13px;
}
.root_container .right_side #loginForm .pwd_strength, .root_container .right_side .form_panel .pwd_strength {
  display: flex;
  gap: 4px;
  margin-top: 6px;
  padding: 0 2px;
}
.root_container .right_side #loginForm .pwd_strength .strength_bar, .root_container .right_side .form_panel .pwd_strength .strength_bar {
  flex: 1;
  height: 3px;
  border-radius: var(--radius-sm);
  background: var(--grayscale-color-20);
  transition: background 0.3s;
}
.root_container .right_side #loginForm .pwd_strength .strength_bar.level_1, .root_container .right_side .form_panel .pwd_strength .strength_bar.level_1 {
  background: var(--error-color, #d9534f);
}
.root_container .right_side #loginForm .pwd_strength .strength_bar.level_2, .root_container .right_side .form_panel .pwd_strength .strength_bar.level_2 {
  background: #f0ad4e;
}
.root_container .right_side #loginForm .pwd_strength .strength_bar.level_3, .root_container .right_side .form_panel .pwd_strength .strength_bar.level_3 {
  background: #2D6A4F;
}
.root_container .right_side #loginForm .other, .root_container .right_side .form_panel .other {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin: 10px 0 20px;
}
.root_container .right_side #loginForm .other .check_label, .root_container .right_side .form_panel .other .check_label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--grayscale-color-70);
}
.root_container .right_side #loginForm .other .check_label input, .root_container .right_side .form_panel .other .check_label input {
  accent-color: #2D6A4F;
}
.root_container .right_side #loginForm .other .find_info, .root_container .right_side .form_panel .other .find_info {
  display: none;
  gap: 10px;
}
.root_container .right_side #loginForm .other .find_info.on, .root_container .right_side .form_panel .other .find_info.on {
  display: flex;
}
.root_container .right_side #loginForm .other .find_info .find_link, .root_container .right_side .form_panel .other .find_info .find_link {
  color: var(--grayscale-color-50);
  text-decoration: none;
  transition: color 0.2s;
}
.root_container .right_side #loginForm .other .find_info .find_link:hover, .root_container .right_side .form_panel .other .find_info .find_link:hover {
  color: #2D6A4F;
}
.root_container .right_side #loginForm .other .find_info .split_bar, .root_container .right_side .form_panel .other .find_info .split_bar {
  color: var(--grayscale-color-20);
}
.root_container .right_side #loginForm .login_btn, .root_container .right_side .form_panel .login_btn {
  width: 100%;
  height: 50px;
  background: #2D6A4F;
  border-radius: var(--radius-lg);
  color: var(--grayscale-color-0);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  justify-content: center;
}
.root_container .right_side #loginForm .login_btn:hover, .root_container .right_side .form_panel .login_btn:hover {
  background: #2D6A4F;
  box-shadow: 0 0 0 rgba(27, 67, 50, 0.25);
}
.root_container .right_side #loginForm .login_btn:active, .root_container .right_side .form_panel .login_btn:active {
  transform: translateY(0);
}
.root_container .right_side #loginForm .join_wrap, .root_container .right_side .form_panel .join_wrap {
  text-align: left;
  font-size: 13px;
  color: var(--grayscale-color-50);
  min-height: 20px;
  visibility: hidden;
}
.root_container .right_side #loginForm .join_wrap.on, .root_container .right_side .form_panel .join_wrap.on {
  visibility: visible;
}
.root_container .right_side #loginForm .join_wrap a, .root_container .right_side .form_panel .join_wrap a {
  color: #2D6A4F;
  font-weight: 600;
}
.root_container .right_side #loginForm .join_wrap a:hover, .root_container .right_side .form_panel .join_wrap a:hover {
  text-decoration: underline;
}
.root_container .right_side .support_info {
  margin-top: 15px;
  padding: 12px 16px;
  background: var(--grayscale-color-10);
  border: 1px solid var(--grayscale-color-15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.root_container .right_side .support_info .support_icon {
  width: 34px;
  height: 34px;
  background: #2D6A4F;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.root_container .right_side .support_info .support_icon .material-symbols-outlined {
  font-size: 18px;
  color: var(--grayscale-color-0);
  font-variation-settings: "FILL" 1, "wght" 400;
}
.root_container .right_side .support_info .support_text {
  line-height: 1.5;
}
.root_container .right_side .support_info .support_text .t1 {
  font-size: 12px;
  color: var(--grayscale-color-50);
  margin-bottom: 2px;
}
.root_container .right_side .support_info .support_text .t2 {
  font-size: 14px;
  font-weight: 500;
  color: #1B4332;
}

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