.modalLogin {
  width: 100rem !important;
  height: 66rem;
  top: 10rem;
  left: -25rem;
}

.forget {
  display: block;
  text-align: center;
  color: #003c47;
}

.box-info-login .register,
.box-info-register .login,
.box-info-verify .register {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: #d4a017;
  font-size: 15px;
}
a .node {
  color: #003c47;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.25s ease-in-out;
  position: absolute;
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 0 14px rgba(255, 255, 255, 0.7);
  transition: 0.28s ease;
  overflow: hidden;
}
.node:hover {
  transform: scale(1.1);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.25),
    inset 0 0 22px rgba(255, 255, 255, 0.95);
}

a .node:hover {
  color: #0e79e6;
  text-shadow: 0 0 6px rgba(14, 121, 230, 0.4);
}

a .node[style] {
  color: inherit !important;
}
a .node[style]:hover {
  color: #c00 !important;
  text-shadow: 0 0 6px rgba(255, 0, 0, 0.45);
}
/* ======================================
   LAYOUT CHUẨN – KHÔNG BỂ TRÊN MOBILE
====================================== */
.containerdangnhap {
  display: flex;
  width: 100%;
  height: 66rem;
  max-width: 1200px;
  padding: 0 25px 25px 25px;
  gap: 25px;
  background: #003c47;
  position: relative;
  overflow: hidden;
}

.left-area {
  width: 50%;
}

.right-area {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  min-width: 0;
}
.highlight-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.5px;
  color: #d4a017;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #d9f1ff 70%);
  -webkit-background-clip: text;
  text-shadow: 0 3px 12px rgba(255, 255, 255, 0.3);
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  margin-top: 17px;
}

.highlight-sub {
  font-size: 14px;
  text-align: center;
  color: #daf6ff;
  font-weight: 400;
  margin-top: 7px;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.35);
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  margin-bottom: 53px;
  padding: 1px;
}

/* Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive mobile */
@media (max-width: 480px) {
  .highlight-title {
    font-size: 19px;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.25);
  }

  .highlight-sub {
    font-size: 13px;
    margin-top: 8px;
    line-height: 21px;
  }
}
/* ======================================
   VÒNG TRÒN ECO – RESPONSIVE SCALE
====================================== */
.circle-wrapper {
  position: relative;
  width: 100%;
  max-width: 328px;
  aspect-ratio: 1 / 1;
  margin: auto;
}

.circle-wrapper * {
  overflow: visible !important;
}

/* Node làm mốc định vị */
.circle-wrapper .node {
  position: absolute;
  z-index: 50;
}

.circle-main {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  box-shadow:
    0 0 25px rgba(255, 255, 255, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.circle-wrapper .node .tooltip {
  position: absolute;

  /* Luôn nằm trên icon */
  bottom: 100%;
  margin-bottom: 14px;

  left: 50%;
  transform: translateX(-50%);

  width: 260px;
  max-width: 90vw;

  background: #ffffff;
  color: #0fb9b1;
  padding: 14px 18px;
  border-radius: 12px;

  font-size: 14px;
  line-height: 1.5;
  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: all 0.25s ease;
  z-index: 9999;

  /* chống xoay theo vòng tròn */
  transform-origin: center;
}

/* Mũi tên */
.circle-wrapper .node .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);

  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffffff;
}

/* Hover hiển thị tooltip */
.circle-wrapper .node:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* ====================== */
/* FIX TRƯỜNG HỢP XOAY */
/* ====================== */

.circle-wrapper .node {
  transform-origin: center;
}

.circle-wrapper .node .tooltip {
  transform: translateX(-50%) rotate(0deg) !important;
}

@media (max-width: 1024px) {
  .circle-wrapper .node .tooltip {
    width: 240px;
    font-size: 13px;
    padding: 12px 16px;
  }
}

@media (max-width: 768px) {
  .circle-wrapper .node .tooltip {
    width: 220px;
    font-size: 13px;
    padding: 12px 14px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .circle-wrapper .node .tooltip {
    width: 200px;
    font-size: 12px;
    padding: 10px 12px;
  }
}

.circle-wrapper {
  position: relative;
  overflow: visible !important;
  isolation: isolate; /* tạo layer riêng cho tooltip */
}

.circle-main,
.big-ring {
  z-index: 1;
  pointer-events: none;
}

.circle-wrapper figcaption {
  z-index: 2;
}

.circle-wrapper .node {
  z-index: 10;
}

.circle-wrapper .node .tooltip {
  position: absolute;
  z-index: 99999;
  transform: translateX(-50%) translateY(0) !important;
  pointer-events: none;
}

.circle-wrapper .n6 .tooltip,
.circle-wrapper .n7 .tooltip,
.circle-wrapper .n5 .tooltip {
  bottom: auto;
  top: 120%;
  margin-top: 14px;
}

.circle-wrapper .n6 .tooltip::after,
.circle-wrapper .n7 .tooltip::after,
.circle-wrapper .n5 .tooltip::after {
  top: auto;
  bottom: 100%;
  border-top: none;
  border-bottom: 10px solid #fff;
}

.big-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.big-ring::before,
.big-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.big-ring::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0 40%, transparent 41%), repeating-conic-gradient(rgba(255, 255, 255, 0.05) 0deg 2deg, transparent 2deg 8deg);
  opacity: 0.8;
}

.big-ring::after {
  background: radial-gradient(circle, transparent 0 48%, rgba(255, 255, 255, 0.15) 49% 52%, transparent 52%);
  transform: scale(0.86);
}

.center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #fff; */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 5;
}

.center img {
  width: 100%;
  height: auto;
  padding-left: 3px;
  padding-top: 4px;
}

/* ======================================
   8 NODE – TỰ SCALE THEO MÀN HÌNH
====================================== */
.node {
  position: absolute;
  width: 25%;
  height: 25%;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  color: #444;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    inset 0 0 12px rgba(255, 255, 255, 0.7);
  transition: 0.3s;
}

.node:hover {
  transform: scale(1.1);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.25),
    inset 0 0 22px rgba(255, 255, 255, 1);
}

.n1 {
  top: -10%;
  left: 37%;
}
.n2 {
  top: 3%;
  right: 5%;
}
.n3 {
  top: 38%;
  right: -10%;
}
.n4 {
  bottom: 3%;
  right: 4%;
}
.n5 {
  bottom: -10%;
  left: 37%;
}
.n6 {
  bottom: 5%;
  left: 2%;
}
.n7 {
  top: 38%;
  left: -10%;
}
.n8 {
  top: 3%;
  left: 4%;
}

.modern-login,
.modern-register,
.modern-verify,
.modern-forgot {
  background: #fff;
  padding: 32px;
  border-radius: 30px 0px 0px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 460px;
  margin: 0 auto;
  color: #222;
}

.modern-login .login-header,
.modern-register .register-header,
.modern-verify .verify-header,
.modern-forgot .forgot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.modern-login .login-header h2,
.modern-register .register-header h2,
.modern-verify .verify-header h2,
.modern-forgot .forgot-header h2 {
  font-size: 25px;
  font-weight: 700;
  color: #003c47;
}
.modern-login .close-btn,
.modern-register .close-btn,
.modern-forgot .close-btn {
  font-size: 20px;
  cursor: pointer;
  color: #8b8b8b;
}

.modern-login .form-label,
.modern-register .form-label,
.modern-verify .form-label,
.modern-forgot .form-label {
  display: block;
  margin: 10px 0 8px;
  font-weight: 600;
  font-size: 16px;
  color: #003c47;
}

.modern-login .input-box,
.modern-register .input-box,
.modern-forgot .input-box {
  position: relative;
  margin-bottom: 16px;
}

.modern-login .input-box input,
.modern-register .input-box input,
.modern-forgot .input-box input {
  width: 100%;
  padding: 12px 44px;
  border-radius: 12px;
  border: 1.8px solid #e3e9ff;
  background: #f6fbff;
  font-size: 14px;
  color: #1f2b3a;
  transition:
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
  outline: none;
  -webkit-appearance: none;
}

.modern-login .input-box input:focus,
.modern-register .input-box input:focus,
.modern-forgot .input-box input:focus {
  border-color: #4a8bff;
  box-shadow: 0 6px 18px rgba(74, 139, 255, 0.18);
  background: #fff;
}

.modern-login .input-box .icon,
.modern-register .input-box .icon,
.modern-forgot .input-box .icon {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b7e99;
  pointer-events: none;
  font-size: 18px;
  z-index: 10;
}

.modern-login .input-box .show-pass,
.modern-register .input-box .show-pass {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  color: #6b7e99;
  transition:
    background 0.15s,
    color 0.15s;
  background: transparent;
  border: none;
}
.modern-login .input-box .show-pass:hover,
.modern-register .input-box .show-pass:hover {
  background: rgba(74, 139, 255, 0.06);
  color: #2b5fb3;
}

.modern-login .hint,
.modern-register .hint {
  font-size: 13px;
  color: #8b99b8;
  margin-top: 6px;
}

.modern-login .btn-login,
.modern-register .btn-register,
.modern-verify .btn-verify,
.modern-forgot .btn-forgot {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, #003c47, #003c47);
  color: #fff;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease;
  font-size: 17px;
  font-weight: 600;
  margin: 3rem 0 1rem 0;
}
.modern-login .btn-login:active,
.modern-register .btn-register:active,
.modern-forgot .btn-forgot:active {
  transform: translateY(1px);
}
.modern-login .btn-login:hover,
.modern-register .btn-register:hover,
.modern-forgot .btn-forgot:hover {
  box-shadow: 0 8px 20px rgba(255, 110, 30, 0.18);
}

.modern-verify .btn-verify:disabled {
  background: #ccc;
  position: none;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .modern-login,
  .modern-register,
  .modern-forgot {
    padding: 20px;
    border-radius: 12px;
  }
  .modern-login .input-box input,
  .modern-forgot .input-box input,
  .modern-register .input-box input {
    padding: 12px 42px;
    font-size: 15px;
  }
  .modern-login .input-box .icon,
  .modern-forgot .input-box .icon,
  .modern-register .input-box .icon {
    left: 10px;
  }
  .modern-login .input-box .show-pass,
  .modern-register .input-box .show-pass {
    right: 8px;
  }
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 20px;
  font-size: 14px;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.toggle input {
  display: none;
}

.toggle .slider {
  width: 42px;
  height: 22px;
  background: #d7ddea;
  border-radius: 20px;
  position: relative;
  transition: all 0.25s ease;
}

.toggle .slider::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: 0.25s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Khi bật toggle */
.toggle input:checked + .slider {
  background: #4a8bff;
}

.toggle input:checked + .slider::before {
  transform: translateX(20px);
}

/* Chữ Lưu đăng nhập */
.toggle .text {
  font-size: 16px;
  color: #003c47;
}

/* ----------- Quên mật khẩu ----------- */
.forget {
  font-size: 16px;
  color: #003c47;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.forget:hover {
  color: #2e6ef0;
}

/* ----------- Nút Đăng Nhập ----------- */
.btn-login {
  width: 100%;
  padding: 13px 16px;
  margin-top: 8px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #ff8a00, #ff6f00);
  color: white;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(255, 110, 20, 0.25);
  transition: 0.25s ease;
}

.btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 110, 20, 0.35);
}

.btn-login:active {
  transform: scale(0.97);
}

/* ----------- Đăng ký ----------- */
.register-text {
  text-align: center;
  margin-top: 16px;
  font-size: 16px;
  color: #5f6b7d;
}

.register-link {
  color: #ff6f00;
  font-weight: 700;
  text-decoration: none;
}

.register-link:hover {
  text-decoration: underline;
}

/* ===========================
   🔥 MOBILE FIX 320px – 480px
   =========================== */
@media (max-width: 480px) {
  .containerdangnhap {
    display: block;
    width: 100%;
    max-width: 1200px;
    padding: 0 25px 25px 25px;
    gap: 25px;
    margin: auto;
    background: #003c47;
    margin-top: 80px;
  }
  .modern-login,
  .modern-forgot,
  .modern-register {
    padding: 18px 20px;
    border-radius: 14px;
    width: 100%;
    max-width: 100%;
  }

  .modern-login .login-header,
  .modern-forgot .forgot-header,
  .modern-register .register-header,
  .modern-register .verify-header {
    margin-bottom: 14px;
  }

  .modern-login .login-header h2,
  .modern-forgot .forgot-header h2,
  .modern-register .register-header h2,
  .modern-register .verify-header h2 {
    font-size: 19px;
  }

  .modern-login .close-btn,
  .modern-forgot .close-btn,
  .modern-register .close-btn {
    font-size: 18px;
  }

  .modern-login .form-label,
  .modern-forgot .form-label,
  .modern-register .form-label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .modern-login .input-box input,
  .modern-forgot .input-box input,
  .modern-register .input-box input {
    padding: 12px 38px;
    font-size: 14.5px;
    border-radius: 10px;
  }

  .modern-login .input-box .icon,
  .modern-forgot .input-box .icon,
  .modern-register .input-box .icon {
    left: 10px;
    font-size: 17px;
    width: 18px;
    height: 18px;
  }

  .modern-login .input-box .show-pass,
  .modern-register .input-box .show-pass {
    right: 8px;
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .login-options {
    margin: 10px 0 18px;
    font-size: 13.5px;
    gap: 10px;
  }

  .toggle .slider {
    width: 38px;
    height: 20px;
  }

  .toggle .slider::before {
    width: 16px;
    height: 16px;
  }

  .toggle input:checked + .slider::before {
    transform: translateX(18px);
  }

  .toggle .text {
    font-size: 13.5px;
  }

  /* Quên mật khẩu */
  .forget {
    font-size: 13.5px !important;
  }

  /* Nút đăng nhập */
  .btn-login {
    font-size: 15px;
    padding: 12px 16px;
    border-radius: 10px;
    margin-top: 4px;
  }

  /* Đăng ký */
  .register-text {
    font-size: 13.5px;
    margin-top: 14px;
  }

  .register-link {
    font-size: 13.5px;
  }
}

/* ===============================
   📱 MOBILE MÀN NHỎ HƠN 360px 
   =============================== */
@media (max-width: 360px) {
  .containerdangnhap {
    display: block;
    width: 100%;
    max-width: 1200px;
    padding: 0 25px 25px 25px;
    gap: 25px;
    margin: auto;
    background: #003c47;
    margin-top: 80px;
  }
  .modern-login {
    padding: 16px;
  }

  .modern-login .input-box input {
    padding: 11px 36px;
    font-size: 14px;
  }

  .modern-login .input-box .icon {
    left: 8px;
  }

  .modern-login .input-box .show-pass {
    right: 6px;
  }

  .btn-login {
    font-size: 14px;
    padding: 11px 14px;
  }
}

/* ======================================
   RESPONSIVE MOBILE
====================================== */
@media (max-width: 991px) {
  .containerdangnhap {
    display: block;
    width: 100%;
    max-width: 1200px;
    padding: 0 25px 25px 25px;
    gap: 25px;
    margin: auto;
    background: #003c47;
    margin-top: 80px;
  }
  .container {
    flex-direction: column;
    padding: 18px;
  }

  .right-area {
    order: 1;
  }
  .left-area {
    order: 2;
    text-align: center;
  }

  .circle-wrapper {
    max-width: 300px;
  }

  .node {
    width: 26%;
    height: 26%;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .containerdangnhap {
    display: block;
    width: 100%;
    max-width: 1200px;
    padding: 0 25px 25px 25px;
    gap: 25px;
    margin: auto;
    background: #003c47;
    margin-top: 80px;
  }
  .right-area {
    padding: 25px;
  }

  .circle-wrapper {
    max-width: 260px;
  }
}

.containerdangnhap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 768px) {
  .containerdangnhap {
    flex-direction: column;
  }

  .right-area {
    order: 1;
    width: 100%;
  }
  .left-area {
    order: 2;
    width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .right-area {
    order: 1;
    animation: fadeUp 0.4s ease-out;
  }

  .left-area {
    order: 2;
    animation: fadeUp 0.6s ease-out;
    opacity: 0.95;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.title-form-login,
.title-form-register {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2rem;
  width: 100%;
  text-align: center;
}
.error-notify {
  display: none;
  margin-top: 1rem;
  padding-left: 2rem;
  font-weight: 600;
  color: #c20000;
}
.jcc {
  justify-content: center;
}

.forms-slider {
  position: relative;
  overflow: hidden;
  width: 50%;
  height: 100%;
}
.modern-layout {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-sizing: border-box;
}

.forms-slider .modern-login {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.forms-slider .modern-register {
  left: 100%;
  opacity: 0;
  visibility: hidden;
}
.forms-slider .modern-verify {
  left: 200%;
  opacity: 0;
  visibility: hidden;
}
.forms-slider .modern-forgot {
  left: -100%;
  opacity: 0;
  visibility: hidden;
}

.forms-slider.slide-to-register .modern-login {
  left: -100%;
  opacity: 0;
  visibility: hidden;
}
.forms-slider.slide-to-register .modern-register {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.forms-slider.slide-to-register .modern-verify {
  left: 100;
  opacity: 1;
  visibility: visible;
}
.forms-slider.slide-to-register .modern-forgot {
  left: -200%;
  opacity: 0;
  visibility: hidden;
}

.forms-slider.slide-to-forgot .modern-login {
  left: 100%;
  opacity: 0;
  visibility: hidden;
}
.forms-slider.slide-to-forgot .modern-forgot {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.forms-slider.slide-to-forgot .modern-register {
  left: 200%;
  opacity: 0;
  visibility: hidden;
}
.forms-slider.slide-to-forgot .modern-verify {
  left: 300%;
  opacity: 0;
  visibility: hidden;
}

.forms-slider.slide-to-verify .modern-login {
  left: -200%;
  opacity: 0;
  visibility: hidden;
}
.forms-slider.slide-to-verify .modern-forgot {
  left: -300;
  opacity: 0;
  visibility: visible;
}
.forms-slider.slide-to-verify .modern-register {
  left: -100%;
  opacity: 0;
  visibility: hidden;
}
.forms-slider.slide-to-verify .modern-verify {
  left: 0%;
  opacity: 1;
  visibility: visible;
}

.switch-to-register,
.switch-to-login,
.switch-to-forgot {
  color: #003c47;
  font-size: 1.5rem;
  font-weight: 600;
  margin-left: 1rem;
}
.switch-to-register:hover,
.switch-to-login:hover,
.switch-to-forgot:hover {
  cursor: pointer;
  text-decoration: underline;
}
.switch-back-to-login,
.switch-back-to-register {
  font-size: 2rem;
  cursor: pointer;
}
.sidebar-content-type {
  font-size: 1.5rem !important;
}
@keyframes shake-label {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-5px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

.shake-label {
  animation: shake-label 0.4s;
  color: #c20000 !important;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-5px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

.shake {
  border: 2px solid #c20000 !important;
  animation: shake 0.4s;
}

.forms-slider .error-notify {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
}
.fxt-switcher-description1 {
  color: #363636;
  font-size: 1.5rem;
  max-width: 480px;
  width: 100%;
  margin-bottom: 2rem;
}
.fxt-switcher-description1 .fxt-switcher-text {
  display: inline-block;
  color: #4460f1;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fxt-switcher-description1 .fxt-switcher-text:hover {
  color: #0925ad;
  text-decoration: underline;
}
.otp-card-inputs {
  margin: 5em 0;
  display: grid;
  gap: 10px;
  justify-content: center;
  grid-template-columns: repeat(6, auto);
}
.otp-card-inputs input {
  padding: 0.5px;
  width: 60px;
  height: 70px;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  border-radius: 20px;
  border: 3px solid #fdefe2 !important;
}
.otp-card-inputs input:focus {
  outline: 3px solid #003c47;
  border-color: transparent;
}
.fxt-switcher-description3 {
  text-align: center;
  font-size: 16px;
  color: #646464;
  margin-top: 3rem;
  margin-bottom: 10px;
}
.fxt-switcher-description3 .fxt-switcher-text {
  color: #4460f1;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fxt-switcher-description3 .fxt-switcher-text:hover {
  color: #0f2ab2;
  text-decoration: underline;
}
.titleOTP {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.box-input-otp {
  margin-top: 5rem;
}
.title-header-layout {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 30px;
}
.form-label-forgot {
  margin-top: 5rem !important;
}
.modalLogin .modal-header {
  background: #003c47 !important;
  border-bottom: none;
}
.modal-header .close {
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent;
  border: none;
  overflow: hidden;
}

.modal-header .close:focus {
  outline: none;
  box-shadow: none;
}

.modal-header .close i {
  pointer-events: none;
  display: inline-block;
  color: #fff;
  font-size: 3.5rem;
  transition: transform 1s ease;
  margin-right: 1rem;
}

.modal-header .close:hover i {
  transform: rotate(360deg);
}
.box-add-realestate-header {
  border: 2px solid;
  border-radius: 10px;
}
.box-add-realestate-header:hover {
  background: #003c47;
  color: #fff;
}
.box-wishlist-header {
  border: 1px solid #003c47;
  padding: 1rem;
  font-size: 2rem;
  border-radius: 10px;
}
.box-wishlist-header:hover {
  background-color: #003c47;
  color: #fff;
}
.modalNearbyAmenities {
  top: 0rem;
  left: -45rem;
  width: 90vw !important;
  height: 95vh;
}
.modalNearbyAmenities .modal-body {
  display: flex;
  height: 500px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

#sidebar-utilities {
  width: 380px;
  background: #fff;
  border-right: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

#tabs-utilities {
  display: flex;
  border-bottom: 1px solid #ccc;
}

#tabs-utilities button {
  flex: 1;
  padding: 10px;
  border: none;
  cursor: pointer;
  background: #f5f5f5;
  font-weight: bold;
}

#tabs-utilities button.active {
  background: #007bff;
  color: white;
}

#list-utilities {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}

#list-utilities div {
  padding: 8px 5px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

#mapNearbyAmenities {
  flex: 1;
}
#map-utilities {
  flex: 1;
}
.box-utilities-map {
  display: flex;
  position: relative;
}
.modal-content .modal-header {
  background-color: #1c1f22;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.modal-content .modal-header .modal-title,
.modal-content .modal-header button span {
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.4px;
  font-size: 2rem;
  margin-bottom: 0;
  display: flex;
  flex-grow: 1;
  padding: 1rem;
}
.modal-content .modal-header button {
  opacity: 1;
}
.banner-footer-realestate {
  width: 100%;
  margin: 20px 0;
}

.modalCategoryFilterRealEstate,
.modalPriceRangeFilterRealEstate,
.modalAreaRangeFilterRealEstate,
.modalAdvanceFilterRealEstate {
  top: 5rem;
  width: 50rem;
  height: 80rem;
}
.modalCategoryFilterRealEstate .modal-body,
.modalPriceRangeFilterRealEstate .modal-body,
.modalAreaRangeFilterRealEstate .modal-body,
.modalAdvanceFilterRealEstate .modal-body {
  display: flex;
  height: 500px;
  overflow: auto;
  margin: 0;
  padding: 0;
}
