/* Sử dụng lại font và nền đồng bộ hệ thống FuturePhone */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f3f4f6 !important;
}

/* Định dạng hiệu ứng Focus cho toàn bộ ô Input giống FuturePhone */
.form-control:focus {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

/* Hiệu ứng di chuột cho nút Đăng ký */
.custom-btn-submit {
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.custom-btn-submit:hover {
  transform: translateY(-1px);
  background-color: #bb2d3b !important;
}

/* NAVBAR STYLING (Nhân bản từ trang chủ chính để đồng bộ) */
.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 14px 40px !important;
}

.navbar-brand {
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  font-size: 14px;
  white-space: nowrap;
  margin-left: 10px;
  transition: opacity 0.3s ease;
}

.navbar-nav .nav-link:hover {
  opacity: 0.8;
}

.navbar-nav .nav-link.active {
  color: white !important;
  border-bottom: 2px solid white;
  padding-bottom: 4px;
}

.navbar-dark .navbar-nav .dropdown-menu {
  background-color: #c71a20;
  border: none;
}

.navbar-dark .navbar-nav .dropdown-menu .dropdown-item {
  color: white;
  font-size: 14px;
}

.navbar-dark .navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: #b81e1e;
  color: white;
}

/* RESPONSIVE TRÊN THIẾT BỊ DI ĐỘNG */
@media (max-width: 768px) {
  .navbar {
    padding: 12px 20px !important;
  }

  .navbar-nav .nav-link {
    padding: 8px 0 !important;
    margin-left: 0;
  }
}