@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://kit-pro.fontawesome.com/releases/v6.1.1/css/pro.min.css");

 * {
  margin:0;
  padding:0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
	font-family: Poppins, sans-serif !important;
	background-color: #dddddd;
	color: #101010;
	font-size: 14px;
    overflow-x: hidden;
}
body a { text-decoration: none; }

header nav { background-color: #ffffff; }

header .nav-item { padding: 0px 10px; margin: 0px 10px;}
header .nav-link { color: #0c2461; font-weight:600; }
header .nav-link {color: #0c2461; font-weight:600; }

header .navbar-brand { font-weight:800; font-size:22px; color: #0c2461; }

header .btn-login { background-color: #0c2461; color:#fafafa; }
header .btn-login:hover { background-color: #0c2461; color:#fafafa; box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; }
header .btn-chat { font-size:16px; margin-right: 16px; }
header .btn-chat i { font-size:25px; color: #0c2461; margin-top:5px; }

.footer { background-color:#0c2461; color:#fafafa; padding: 30px 0px; }
.footer .pages a { color:#dddddd; width:100%; display:inline-block; margin-bottom:12px; }
.footer .pages a:hover { color:#fafafa; text-decoration:underline; }

.footer .social a {
	background-color: #fafafa;
	color: #0c2461;
	width: 42px;
	height: 42px;
	line-height: 42px;
	text-align: center;
	border-radius: 50%;
	margin: 10px;
	font-size: 18px;
}
.footer .social a:hover { opacity:0.5; }


.layout {
	background-color: #fafafa;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
	padding: 10px 14px;
	border-radius: 5px;
}
.layout:hover { box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; }

.layout h1 {color: #0c2461; font-size:22px; }
.layout span { font-size:13px; color:#000000; }
.color-username { color: #0c2461; margin-top:10px; border-bottom: 1px solid #0c2461; }

.form-box {
  width:100%;
  max-width:420px;
  background:#fff;
  padding:40px 30px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
  margin: 5px auto;
}

.form-title {
  text-align:center;
  font-size:32px;
  font-weight:700;
  margin-bottom:10px;
  color:#0f172a;
}

.form-subtitle {
  text-align:center;
  color:#64748b;
  margin-bottom:30px;
  font-size:15px;
}

.form-control {
  height:50px;
  border-radius:12px;
  padding-left:45px;
  border:1px solid #cbd5e1;
  font-size:15px;
}

.form-control:focus { box-shadow:none; border-color:#0c2461; }
.input-group { position:relative; margin-bottom:20px; }
.input-group i {
  position:absolute;
  top:50%;
  left:15px;
  transform:translateY(-50%);
  color:#64748b;
  z-index:10;
}

.btn-submit {
  height: 50px;
  border: none;
  border-radius: 12px;
  background: #0c2461;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-submit:hover { background: #0c2461; color:#dddddd; }

.extra-links {
  display:flex;
  justify-content:space-between;
  margin-top:15px;
  font-size:14px;
}
.extra-links a { text-decoration:none; color:#0c2461; }
.extra-links a:hover { text-decoration:underline; }
.social-login { margin-top:30px; text-align:center; }
.social-btns { display:flex; gap:10px; margin-top:15px; }
.social-btns button{
  flex: 1;
  border:none;
  height:45px;
  border-radius:12px;
  font-weight:600;
  background:#f1f5f9;
  transition:0.3s;
}
.social-btns button:hover { background:#e2e8f0; }
.form-check { cursor: pointer; }

.video-container {
  margin: 0px;
  margin-top: -10px;
  padding: 0;
  height: 60vh;
  overflow: hidden;

}

.video-background video {
  position: relative;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -10; 
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  left: 50%;
}

.profile-card {
  border:none;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.profile-header {
  background:linear-gradient(135deg,#0d6efd,#4f8cff);
  color:#fff;
  padding:40px 20px;
  text-align:center;
}
.profile-avatar {
  width:100px;
  height:100px;
  border-radius:50%;
  background:#fff;
  color:#0d6efd;
  font-size:40px;
  font-weight:bold;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  margin-bottom:15px;
}

.profile-info { padding:25px; }
.info-item { padding:15px 0; border-bottom:1px solid #eee }
.info-item:last-child{ border-bottom:none; }
.info-label { font-weight:600; color:#666; }

.status-active {
  background:#198754;
  color:#fff;
  padding:5px 12px;
  border-radius:50px;
  font-size:14px;
}

.info-box {
  background:#fff;
  border-radius:18px;
  padding:18px 20px;
  margin-bottom:18px;
  box-shadow:0 3px 12px rgba(0,0,0,0.05);
}

.ticket-card {
  background:#fff;
  border-radius:20px;
  padding:25px;
  box-shadow:0 3px 15px rgba(0,0,0,0.06);
  margin-bottom:20px;
  border-left:5px solid #0d6efd;
}

.flight-route {
  font-size:24px;
  font-weight:bold;
  color:#0d6efd;
}
.ticket-label { font-size:13px; color:#777; }
.ticket-value { font-weight:600; color:#222; }

.scroll-w-menu {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
 -webkit-overflow-scrolling: touch;
  width: 100%;
}
.scroll-bar-hide::-webkit-scrollbar { width: 0px; height:0px; }