.auth-section {
  background-color: #eef4fa;
}

.auth-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
.auth-grid {
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .auth-grid {
    gap: 15px;
  }
}
@media screen and (max-width: 850px) {
  .auth-grid {
    gap: 40px;
    flex-direction: column-reverse;
  }
}

.auth-info {
  height: 100%;
  flex: 1 1 auto;
  max-width: 100%;
  padding-left: 25px;
  position: relative;
}
.auth-info::before {
  content: "";
  width: 3px;
  height: calc(100% - 8px);
  position: absolute;
  left: 4px;
  top: 4px;
  border-radius: 6px;
  background: linear-gradient(to bottom, #8494c6, rgba(11, 92, 171, 0.05));
}

.auth-form {
  padding: 40px;
  flex: 0 0 400px;
  max-width: 400px;
  max-height: max-content;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 850px) {
  .auth-form {
    width: 100%;
    flex: 1 1 auto;
    max-width: 80%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 640px) {
  .auth-form {
    padding: 25px;
    max-width: unset;
  }
}

.auth-content {
  display: none;
  animation: fadeIn 0.35s ease forwards;
}
.auth-content.active {
  display: block;
}

.auth-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  letter-spacing: 1.5px;
  color: #111;
  text-transform: uppercase;
  border-radius: 100rem;
  border: 1px solid #9e9e9f;
  margin-bottom: 15px;
  max-width: max-content;
  transition: all 0.25s ease;
  background: linear-gradient(to right, rgba(11, 92, 171, 0.08), rgba(11, 92, 171, 0.02));
}
.auth-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.auth-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  background: #8494c6;
  border-radius: 100rem;
}

.auth-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 40px;
  margin-bottom: 20px;
  color: #374ea2;
}

.auth-description {
  color: #787878;
  font-size: 16px;
  max-width: 100%;
  line-height: 26px;
  margin-bottom: 30px;
}

.auth-switch {
  display: flex;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ddd;
}
.auth-switch .switch-button {
  flex: 1;
  border: none;
  height: 44px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background-color: #fafafa;
  transition: all 0.25s ease;
}
.auth-switch .switch-button:not(:last-child) {
  border-right: 1px solid #e5e5e5;
}
.auth-switch .switch-button:hover {
  background-color: #f0f0f0;
}
.auth-switch .switch-button.active {
  color: #fff;
  background-color: #111;
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #ddd;
}
.auth-divider span {
  padding: 0 12px;
  font-size: 13px;
  color: #9e9e9f;
  white-space: nowrap;
}

.auth-link {
  font-weight: 600;
  text-decoration: underline;
}

.auth-login {
  font-size: 15px;
  margin-top: 20px;
  line-height: 22px;
  color: #787878;
}
.auth-login-link {
  font-weight: 700;
  margin-left: 4px;
  color: #2563eb;
  font-size: inherit;
  text-decoration: underline;
}

.auth-footer {
  font-weight: 600;
}

#form_auth .form-register {
  display: none;
  flex-direction: column;
}
#form_auth .form-register.active {
  display: flex;
}
#form_auth .form-group {
  margin-bottom: 10px;
}
#form_auth .form-group label {
  display: block;
  margin-bottom: 10px;
}
#form_auth .form-group label span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
#form_auth .form-group input,
#form_auth .form-group select,
#form_auth .form-group textarea {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
  background-color: #fff;
  border: 1px solid #ddd;
}
#form_auth .form-group input:focus,
#form_auth .form-group select:focus,
#form_auth .form-group textarea:focus {
  outline: none;
  border-color: #555;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}
#form_auth .form-group textarea {
  min-height: 80px;
  resize: vertical;
  padding: 10px 14px;
}
#form_auth .form-group:has(.g-recaptcha) {
  margin-bottom: 20px;
}
#form_auth .form-note {
  font-size: 14px;
  margin-top: 14px;
  line-height: 22px;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #333;
  position: relative;
}
#form_auth .form-note::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #e5e5e5;
  margin: 12px auto 14px auto;
}
#form_auth .form-radio {
  margin-bottom: 15px;
}
#form_auth .form-radio .radio {
  width: 100%;
  height: 100%;
}
#form_auth .form-radio .radio {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
#form_auth .form-radio .radio {
  gap: 20px;
}
#form_auth .form-radio .radio span {
  height: 100%;
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
}
#form_auth .form-radio .radio-wrapper {
  height: 100%;
}
#form_auth .form-radio .radio-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
#form_auth .form-radio .radio-wrapper {
  gap: 20px;
}
#form_auth .form-radio .radio-option {
  gap: 8px;
  display: flex;
  cursor: pointer;
  font-size: 14px;
  align-items: center;
  color: #333;
}
#form_auth .form-radio .radio-option:hover span::before {
  border-color: #5b71b3;
}
#form_auth .form-radio .radio-option span {
  font-size: 14px;
  font-weight: 600;
}
#form_auth .form-radio .radio-option span::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.2s ease;
  border-radius: 100rem;
  border: 2px solid #ddd;
}
#form_auth .form-radio .radio-option input {
  display: none;
}
#form_auth .form-radio .radio-option input:checked + span::before {
  border-color: #5b71b3;
  box-shadow: inset 0 0 0 4px #5b71b3;
}
#form_auth .password-wrap {
  position: relative;
}
#form_auth .password-wrap input {
  width: 100%;
  padding-right: 42px;
}
#form_auth .password-toggle {
  width: 50px;
  height: 46px;
  line-height: 46px;
  position: absolute;
  right: 0px;
  top: 12px;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  color: #6b7280;
  background-color: transparent;
}
#form_auth .password-toggle i.fa {
  user-select: none;
  pointer-events: none;
}

#info_personal {
  padding-right: 20px;
}
#info_personal .personal-list {
  gap: 24px;
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1024px) {
  #info_personal .personal-list {
    gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  #info_personal .personal-list {
    grid-template-columns: 1fr;
  }
}
#info_personal .personal-item {
  overflow: hidden;
  position: relative;
  padding-left: 22px;
  padding: 24px 26px;
  background-color: #fff;
  border-radius: 12px;
  transition: all 0.25s ease;
}
#info_personal .personal-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border-color: #ddd;
}
#info_personal .personal-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #8494c6, rgba(11, 92, 171, 0.15));
}
#info_personal .personal-item strong {
  color: #111;
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}
#info_personal .personal-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

#info_business .business-list {
  gap: 30px;
  display: grid;
  margin-bottom: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 640px) {
  #info_business .business-list {
    grid-template-columns: 1fr;
  }
}
#info_business .business-item {
  padding: 28px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid #9e9e9f;
  transition: all 0.25s ease;
}
#info_business .business-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background-color: #8494c6;
}
#info_business .business-item:hover {
  border-color: #9e9e9f;
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.05);
}
#info_business .business-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}
#info_business .business-item p {
  font-size: 14px;
  font-weight: 500;
  color: #787878;
  line-height: 26px;
}
#info_business .business-process {
  padding: 28px;
  margin-bottom: 40px;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #9e9e9f;
}
#info_business .business-process h3 {
  color: #111;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 22px;
}
#info_business .business-process ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
#info_business .business-process ul::before {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 2px;
  left: 12px;
  top: 4px;
  background-color: #9e9e9f;
}
#info_business .business-process ul li {
  position: relative;
  font-size: 14px;
  color: #787878;
  line-height: 28px;
  padding-left: 40px;
  margin-bottom: 22px;
}
#info_business .business-process ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 12px;
  height: 12px;
  background: #8494c6;
  border-radius: 100rem;
  box-shadow: 0 0 0 4px rgba(11, 92, 171, 0.1);
}
#info_business .business-process ul li:last-child {
  margin-bottom: 0;
}
#info_business .business-trust {
  padding: 28px;
  overflow: hidden;
  margin-top: 30px;
  position: relative;
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid #adb8d9;
}
#info_business .business-trust::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #8494c6;
}
#info_business .business-trust strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#info_business .business-trust p {
  font-size: 14px;
  line-height: 28px;
  color: #787878;
}

#login_form .btn-primary {
  width: 100%;
  margin-top: 10px;
  padding-block: 10px;
}

#forgot_password .auth-form {
  padding: 30px;
}
#forgot_password .auth-description {
  margin-bottom: 20px;
}
#forgot_password .form-note {
  margin-bottom: 20px;
}
#forgot_password .btn-primary {
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
}

#reset_password .btn-primary {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

#btnGoogle {
  width: 100%;
  height: 46px;
  cursor: pointer;
  color: #333;
  background-color: #fff;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: 1px solid #ddd;
}
#btnGoogle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#btnGoogle {
  gap: 10px;
}
#btnGoogle span {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
#btnGoogle img {
  width: 22px;
  height: 22px;
}
#btnGoogle:hover {
  background-color: #9e9e9f;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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