.register_page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  background: #FFFFFF;
}
.register_page .register_card {
  width: 100%;
  max-width: 640px;
  background: #FFFFFF;
  border: 5px solid rgba(69, 175, 200, 0.2);
  border-radius: 18px;
  padding: 48px 48px;
  box-shadow: 0px 32px 64px -12px rgba(10, 13, 18, 0.1411764706);
  overflow: hidden;
}
.register_page .register_card .register_head {
  text-align: center;
  margin-bottom: 32px;
}
.register_page .register_card .register_head h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2C2C2C;
  margin: 0 0 10px;
  line-height: 1.3;
}
.register_page .register_card .register_head p {
  font-size: 15px;
  color: #6B7280;
  margin: 0;
  line-height: 1.5;
}
.register_page .register_card .register_form .form_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.register_page .register_card .register_form .form_group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 8px;
}
.register_page .register_card .register_form .form_group .input_wrap {
  position: relative;
}
.register_page .register_card .register_form .form_group .input_wrap input,
.register_page .register_card .register_form .form_group .input_wrap select {
  width: 100%;
  height: 50px;
  padding: 12px 16px;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  font-size: 15px;
  color: #2C2C2C;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.register_page .register_card .register_form .form_group .input_wrap input:focus,
.register_page .register_card .register_form .form_group .input_wrap select:focus {
  border-color: #147187;
  box-shadow: 0 0 0 3px rgba(31, 122, 140, 0.12);
}
.register_page .register_card .register_form .form_group .input_wrap input::placeholder,
.register_page .register_card .register_form .form_group .input_wrap select::placeholder {
  color: #B0B5BB;
}
.register_page .register_card .register_form .form_group .input_wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
  cursor: pointer;
}
.register_page .register_card .register_form .custom_select {
  position: relative;
  width: 100%;
  font-size: 15px;
}
.register_page .register_card .register_form .custom_select.is_open .cs_trigger {
  border-color: #147187;
  box-shadow: 0 0 0 3px rgba(31, 122, 140, 0.12);
}
.register_page .register_card .register_form .custom_select.is_open .cs_trigger .cs_chevron {
  transform: rotate(180deg);
}
.register_page .register_card .register_form .custom_select.is_open .cs_panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.register_page .register_card .register_form .custom_select .cs_trigger {
  width: 100%;
  height: 50px;
  padding: 12px 44px 12px 16px;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  background: #fff;
  color: #2C2C2C;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  font-size: 15px;
  position: relative;
}
.register_page .register_card .register_form .custom_select .cs_trigger:hover {
  border-color: rgb(199.6, 199.6, 199.6);
}
.register_page .register_card .register_form .custom_select .cs_trigger .cs_label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.register_page .register_card .register_form .custom_select .cs_trigger .cs_label.is_placeholder {
  color: #B0B5BB;
}
.register_page .register_card .register_form .custom_select .cs_trigger .cs_chevron {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #6B7280;
  transition: transform 0.2s;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.register_page .register_card .register_form .custom_select .cs_trigger.is_open .cs_chevron {
  transform: translateY(-50%) rotate(180deg);
}
.register_page .register_card .register_form .custom_select .cs_panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.12);
  padding: 6px;
  max-height: 240px;
  overflow-y: auto;
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.register_page .register_card .register_form .custom_select .cs_panel::-webkit-scrollbar {
  width: 6px;
}
.register_page .register_card .register_form .custom_select .cs_panel::-webkit-scrollbar-thumb {
  background: #D1D5DB;
  border-radius: 3px;
}
.register_page .register_card .register_form .custom_select .cs_panel::-webkit-scrollbar-track {
  background: transparent;
}
.register_page .register_card .register_form .custom_select .cs_option {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: #2C2C2C;
  cursor: pointer;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.12s, color 0.12s;
}
.register_page .register_card .register_form .custom_select .cs_option:hover, .register_page .register_card .register_form .custom_select .cs_option.is_active {
  background: rgba(31, 122, 140, 0.08);
  color: #147187;
}
.register_page .register_card .register_form .custom_select .cs_option.is_selected {
  background: rgba(31, 122, 140, 0.12);
  color: #147187;
  font-weight: 600;
}
.register_page .register_card .register_form .custom_select .cs_option.is_selected::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F7A8C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}
.register_page .register_card .register_form .terms_row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 8px 0 24px;
}
.register_page .register_card .register_form .terms_row input[type=checkbox] {
  margin-top: 3px;
  width: 14px;
  height: 14px;
  accent-color: #147187;
  cursor: pointer;
  flex-shrink: 0;
}
.register_page .register_card .register_form .terms_row label {
  font-size: 13px;
  color: #8A8F98;
  line-height: 1.5;
  cursor: pointer;
  margin: 0;
}
.register_page .register_card .register_form .terms_row label a {
  color: #8A8F98;
  text-decoration: underline;
}
.register_page .register_card .register_form .terms_row label a:hover {
  color: #147187;
}
.register_page .register_card .register_form .submit_btn {
  width: 100%;
  height: 48px;
  background: #147187;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s;
}
.register_page .register_card .register_form .submit_btn:hover {
  background: #176376;
}
.register_page .register_card .register_form .signin_text {
  text-align: center;
  margin: 20px 0 0;
  font-size: 15px;
  color: #2C2C2C;
}
.register_page .register_card .register_form .signin_text a {
  color: #147187;
  font-weight: 700;
  text-decoration: none;
}
.register_page .register_card .register_form .signin_text a:hover {
  text-decoration: underline;
}
.register_page .register_footer {
  width: 100%;
  max-width: 640px;
  margin-top: 80px;
  padding: 0 8px;
  text-align: center;
  font-size: 13px;
  color: #8A8F98;
  display: flex;
  align-items: center;
  gap: 16px;
}
.register_page .register_footer::before, .register_page .register_footer::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #E5E7EB;
}

@media (max-width: 640px) {
  .register_page {
    padding: 40px 16px;
  }
  .register_page .register_card {
    padding: 36px 24px;
    border-radius: 14px;
  }
  .register_page .register_card .register_head h2 {
    font-size: 22px;
  }
  .register_page .register_card .register_head p {
    font-size: 14px;
  }
  .register_page .register_card .register_form .form_row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .register_page .register_footer {
    margin-top: 48px;
    font-size: 12px;
  }
}
