body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  background-color: #000f29;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  padding: 60px 20px;
}

.container {
  max-width: 900px;
  margin: auto;
}

.logo {
  width: 60%;
  height: auto;
  margin-bottom: 25px;
}

.headline {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2rem;
  color: #f7c948;
  margin-bottom: 40px;
}

/* ======================================
         TABS AS CONNECTED TAB BUTTONS
      ====================================== */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
  border-bottom: 2px solid #1c3a72;
  background-color: rgba(0, 20, 50, 0.6);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 12px 20px;
  cursor: pointer;
  color: #ffca7a;
  border: none;
  background-color: transparent;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
  border-right: 1px solid #1c3a72;
}

.tab:last-child {
  border-right: none;
}

.tab:hover {
  background-color: #001b3f;
  color: #ffffff;
}

.tab.active {
  background-color: #2a7bff;
  color: #ffffff;
  font-weight: 600;
  box-shadow: inset 0 -4px 0 #ffca7a;
}

/* Tab content */
.tab-content {
  display: none;
  text-align: left;
  margin-top: 0;
  animation: fadeIn 0.4s ease-in-out;
  border: 1px solid #0d2a56;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 25px;
  background-color: rgba(0, 27, 63, 0.4);
  box-shadow: 0 0 10px rgba(0, 90, 255, 0.15);
}

.tab-content.active {
  display: block;
}

.tab-content h2 {
  color: #ffca7a;
  font-size: 1.5rem;
  margin-top: 0;
}

.tab-content p {
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Forms */
form {
  margin-top: 15px;
  text-align: left;
}

input,
textarea,
button {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #204e88;
  border-radius: 6px;
  background-color: rgba(0, 27, 63, 0.8);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  outline: 2px solid #2a7bff;
  box-shadow: 0 0 10px rgba(0, 120, 255, 0.4);
}

button {
  background-color: #2a7bff;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

button:hover {
  background-color: #1a5ed8;
}

.success {
  color: #6ddc6d;
  margin-top: 10px;
}

.error {
  color: #ff6b6b;
  margin-top: 10px;
}

footer {
  margin-top: 50px;
  font-size: 0.9rem;
  color: #cccccc;
}

a {
  color: #ffc857;
}

a:hover {
  color: #ffffff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .tab {
    font-size: 0.9rem;
    padding: 10px 8px;
  }
}

.flag {
  width: 5%;
  display: inline;
  float: left;
  margin-right: 10px;
}

.disclaimer {
  margin-top: 20px;
  padding: 15px;
  border-left: 3px solid #2a7bff;
  background-color: rgba(0, 40, 80, 0.4);
  border-radius: 6px;
}

.disclaimer p {
  font-size: 0.95rem;
  color: #9bb3d3;
  line-height: 1.6;
}

footer p:first-child {
  font-size: 0.85rem;
  color: #9bb3d3;
  margin-bottom: 10px;
  font-style: italic;
}
