<style>	
/* ===== REGISTER SURFACE (sync home) ===== */
:root{
  --mm-radius: 14px;
  --mm-border: rgba(255,255,255,.10);
  --mm-border-soft: rgba(255,255,255,.06);
  --mm-shadow: 0 18px 45px rgba(0,0,0,.45);
  --mm-accent: rgba(0,224,198,.95);
}

/* khung page (title bar) */
.vs-blog .blog-meta.has-border.bg-major-black{
  border-radius: var(--mm-radius);
  border: 1px solid var(--mm-border-soft);
  box-shadow: var(--mm-shadow);
  overflow: hidden;
}

/* body card */
.vs-blog .blog-content.bg-major-black{
  border-radius: var(--mm-radius);
  border: 1px solid var(--mm-border-soft);
  box-shadow: var(--mm-shadow);
  overflow: hidden;
  padding: 22px 26px;
  position: relative;
}

/* viền glow nhẹ giống home */
.vs-blog .blog-content.bg-major-black::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: var(--mm-radius);
  box-shadow: 0 0 0 1px rgba(0,224,198,.08);
  pointer-events:none;
}

/* tiêu đề */
.vs-blog .blog-title h2{
  margin: 0;
  font-weight: 900;
  letter-spacing: .2px;
}

/* title trong content */
.vs-blog .blog-content .title{
  font-weight: 900;
  color: rgba(255,255,255,.92);
  margin-bottom: 14px;
}

/* links box */
.additional-links{
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.additional-links .list-group-item-action{
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.70);
  padding: 10px 14px;
}
.additional-links a{
  color: var(--mm-accent);
  font-weight: 800;
}

/* form spacing gọn hơn */
.registration_form .form-group{
  margin-bottom: 14px;
}
.registration_form label{
  color: rgba(255,255,255,.72);
  font-weight: 800;
  letter-spacing: .2px;
  margin-bottom: 6px;
}

/* input đồng vibe home */
.registration_form .form-control{
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.registration_form .form-control:focus{
  border-color: rgba(0,224,198,.30);
  box-shadow: 0 0 0 2px rgba(0,224,198,.10);
}

/* checkbox rule */
.registration_form input[type="checkbox"]{
  transform: translateY(1px);
}

/* nút submit đẹp hơn (đỡ “to đùng”) */
.registration_form .vs-btn.gradient-btn{
  min-width: 180px;
  height: 44px;
  line-height: 44px;
  border-radius: 10px;
  font-weight: 900;
  letter-spacing: .3px;
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
}

/* responsive: padding bớt dày */
@media (max-width: 991px){
  .vs-blog .blog-content.bg-major-black{ padding: 18px 16px; }
}
.registration_form label{
  color: rgba(255,255,255,.78);
  font-weight: 800;
}

.registration_form .form-control{
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.10);
}

.registration_form .form-control:focus{
  border-color: rgba(0,224,198,.40);
  box-shadow: 0 0 0 3px rgba(0,224,198,.10);
}
.registration_form .form-group{ margin-bottom: 12px; }
.vs-blog .blog-content.bg-major-black{ padding: 22px 26px; }
.registration_form .g-recaptcha,
.registration_form .h-captcha,
.registration_form .cf-turnstile{
  display:flex;
  justify-content:center;
}
.registration_form .vs-btn.gradient-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0,0,0,.45);
}
.registration_form .vs-btn.gradient-btn:active{
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(0,0,0,.30);
}
.registration_form .form-control.inputError,
.registration_form .form-control.error{
  border-color: rgba(255,90,90,.55) !important;
  box-shadow: 0 0 0 3px rgba(255,90,90,.10) !important;
}
/* ===== Thu hẹp panel ===== */
.vs-blog .blog-content.bg-major-black{
  padding: 18px 22px;
}

/* ===== Giảm khoảng cách giữa các field ===== */
.registration_form .form-group{
  margin-bottom: 10px;
}

/* ===== Giảm khoảng cách label -> input ===== */
.registration_form label{
  margin-bottom: 4px;
  font-size: 13px;
}

/* ===== Input thấp hơn 1 chút ===== */
.registration_form .form-control{
  height: 38px;
  padding: 6px 10px;
}

/* ===== Title nhỏ gọn lại ===== */
.vs-blog .blog-content .title{
  font-size: 18px;
  margin-bottom: 8px;
}

/* ===== Box link phụ gọn hơn ===== */
.additional-links{
  margin-bottom: 12px !important;
}
.additional-links .list-group-item-action{
  padding: 8px 12px;
}



/* ===== Nút submit gọn lại ===== */
.registration_form .vs-btn.gradient-btn{
  height: 40px;
  line-height: 40px;
  min-width: 160px;
}
.registration_form .form-group{
  margin-bottom: 8px;
}

/* để tooltip validation không bị cắt */
.vs-blog .blog-content.bg-major-black{
  overflow: visible !important;
}
/* Fix text bị hụt trong nút hình thang */
.registration_form .vs-btn.gradient-btn{
  height: 44px !important;
  min-height: 44px !important;
  line-height: normal !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 22px !important;   /* đừng để padding dọc */
}

.registration_form .vs-btn.gradient-btn *{
  line-height: 1 !important;
}
</style>