* {
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #000000;
  margin: 0;
  padding: 0;
}

/* Main container */
.container {
  max-width: 960px;
  margin: 25px auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Headings */
h2 {
  text-align: center;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.section {
  margin-top: 28px;
}

h3 {
  margin-bottom: 14px;
  color: #2c2c2c;
  padding-bottom: 6px;
  border-bottom: 1px solid #ddd;
}
.inner-banner {
  background: url(./assets/banner2.jpg) no-repeat center;
  background-size: 100%;
  width: 100%;
  height: 100vh;
}
/* Row & Column system */
.row {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
}

.col {
  flex: 1;
}

/* Labels */
label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 4px;
}

/* Inputs */
input,
textarea {
  width: 100%;
  padding: 9px 10px;
  font-size: 13px;
  border: 1px solid #cfd6e0;
  border-radius: 6px;
  background: #fafafa;
  transition: border 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.15);
  background: #fff;
}

/* Textarea compact */
textarea {
  resize: vertical;
}

/* Radio & checkbox groups */
.radio-group,
.checkbox-group {
  margin-top: 6px;
}

.radio-group label,
.checkbox-group label {
  font-weight: normal;
  margin-right: 16px;
  font-size: 13px;
}

/* Declaration text */
.section p {
  font-size: 13px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 12px;
}

/* Submit button */
button {
  margin-top: 35px;
  padding: 14px;
  width: 100%;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 7px;
  cursor: pointer;
}

button:hover {
  opacity: 0.92;
}

/* Mobile responsive */
@media (max-width: 720px) {
  .row {
    flex-direction: column;
  }
}

/* Banner Image */
.bg-dark .form-banner {
  text-align: center; /* center the image */
  /* spacing between banner and form */
  height: 100vh;
  overflow-x:hidden;
}

.form-banner img {
  max-width: 100%; /* makes it responsive */
  width: 550px; /* default width on larger screens */
  height: auto; /* keeps aspect ratio */
  border-radius: 10px; /* rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* subtle shadow */
  display: inline-block; /* ensures centering works */
}

/* Responsive adjustments */
@media (max-width: 720px) {
  .form-banner img {
    width: 180px; /* smaller image on tablets */
  }
}

@media (max-width: 480px) {
  .form-banner img {
    width: 150px; /* smaller image on mobile */
  }
}

/* Footer at the bottom of the form */
.form-footer {
  text-align: center;
  margin-top: 30px; /* spacing from form */
  padding-top: 15px;
  border-top: 1px solid #ddd; /* subtle separator */
  font-size: 14px;
  color: #555;
}

.form-footer a {
  color: #007bff; /* link color */
  text-decoration: none;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* THE MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

/* MODAL CONTENT */
.modal-content {
  background-color: #f9f9f9;
  margin: 50px auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 900px;
  position: relative;
}

/* CLOSE BUTTON */
.close {
  color: #aaa;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #000;
}

/* Make form scrollable on small screens */
.modal-content form {
  max-height: 80vh;
  overflow-y: auto;
}

/* Brand inside modal (optional) */
.form-banner img {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}
/* Register Now Button */
#openFormBtn {
  display: inline-block;
  padding: 12px 60px;
  background-color: #007bff; /* button color */
  color: #fff; /* text color */
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: "Baloo 2", cursive, sans-serif;

  /* Blinking effect */
  /*animation: blinkBtn 4s infinite;*/
}

#openFormBtn:hover {
  background-color: #0056b3; /* darker on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

#openFormBtn:active {
  background-color: #004080;
  transform: translateY(0);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

/* Keyframes for blinking */
/*@keyframes blinkBtn {*/
/*  0%,*/
/*  50%,*/
/*  100% {*/
/*    opacity: 1;*/
/*  }*/
/*  25%,*/
/*  75% {*/
/*    opacity: 0;*/
/*  }*/
/*}*/

/* Modern Coming Soon Container */
.coming-soon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 90%;
  max-width: 450px;
  margin: 100px auto;
  padding: 50px 30px;
  background: linear-gradient(135deg, #ffffff, #e6f0ff);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coming-soon-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.coming-soon-container h1 {
  font-size: 36px;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 15px;
}

.coming-soon-container p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Modern Button */
#openFormBtn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #007bff, #00aaff);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
  transition: all 0.3s ease;
}

#openFormBtn:hover {
  background: linear-gradient(135deg, #0056b3, #0099e6);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 123, 255, 0.5);
}

#openFormBtn:active {
  transform: translateY(0);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

/* Responsive */
@media (max-width: 600px) {
  .coming-soon-container {
    padding: 40px 20px;
  }
  .coming-soon-container h1 {
    font-size: 28px;
  }
  #openFormBtn {
    font-size: 16px;
    padding: 12px 30px;
  }
}

.blinking {
  font-family: "Comic Sans MS", cursive, sans-serif; /* optional fun font */
  font-size: 35px;
  color: #ff3b3b;
  text-align: center;
  animation: blinkAnimation 4s infinite;
}

/*@keyframes blinkAnimation {*/
/*  0%,*/
/*  50%,*/
/*  100% {*/
/*    opacity: 1;*/
/*  }*/
/*  25%,*/
/*  75% {*/
/*    opacity: 0;*/
/*  }*/
/*}*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mail {
  color: #e6f0ff;
  margin-right: 30px;
  text-decoration: none;
  font-size: 20px;
}
