body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  height: 100vh;
  flex-direction: column;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  
}
.overlay {
  inset: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* or your overlay color */
  z-index: 0; /* send it behind */
}
.container, footer {
  position: relative;
  z-index: 1; /* bring them above overlay */
}
label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #00E6FF;
  margin-bottom: 5px;
  text-shadow: 0 0 5px #00E6FF;
}
.container, .form-container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 50px;
}
.title-container img {
  max-width: 500px;
  height: auto;
  margin-bottom: 10px;
  margin-top: -100px;
}
.logo {
  max-width: 300px;
gap: 5px;
}
.iceberg-regular {
  font-family: "Iceberg", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.title {
  font-family: "Iceberg";
  font-weight: bold;
  font-size: 2.5rem;
  color: #00E6FF;
  text-shadow: 0 0 10px #00E6FF;
}
.instructions {
  color: #d0f4fd;
  text-shadow: 0 0 10px #00E6FF;
}
.btn {
  display: inline-block;
  margin-top: 20px;
  margin: 10px;
  padding: 10px 20px;
  background: #00E6FF;
  color: black;
  font-weight: bold;
  cursor: pointer;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 0 15px #00E6FF;
  transition: all 0.3s ease;
}
.btn:hover {
  background: #0088aa;
  color: white;
}
label {
  display: block;
  margin-top: 20px;
}
input {
  width: 90%;
  padding: 10px;
  margin-top: 5px;
  border: none;
  border-radius: 5px;
}
input, textarea {
  width: 100%;
  max-width: 400px;
  padding: 10px 14px;
  border: 2px solid #00f0ff;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 16px;
  outline: none;
  box-shadow: 0 0 8px #00f0ff;
  transition: 0.3s;
}

input:focus, textarea:focus {
  border-color: #00ffff;
  box-shadow: 0 0 12px #00ffff;
}

::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.required {
  color: red;
}
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

form button, 
form input[type="submit"] {
  display: block;
  margin-top: 15px;
  background: #00E6FF;
  color: black;
  font-weight: bold;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 0 15px #00E6FF;
  transition: 0.3s;
}

form button:hover,
form input[type="submit"]:hover {
  background: #0088aa;
  color: white;
}

footer {
  /*position: fixed;
  bottom: 10px;
  width: 100%;*/
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px 0;
  text-align: center;
}
footer img {
  max-height: 30px;
  height: auto;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
}
footer a {
  display: inline-block;
}
.collab-box {
  display: block;
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  padding: 20px;
  margin: 20px auto;
  border-radius: 30px;
  max-width: 400px;
  box-shadow: 0 0 15px #00E6FF;
  transition: all 0.3s ease;
}
.collab-box:hover {
  background: rgba(0, 255, 242, 0.5);
}
input, textarea {
  width: 100%;
  max-width: 400px;
  padding: 10px 14px;
  border: 2px solid #00f0ff;
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 16px;
  outline: none;
  box-shadow: 0 0 8px #00f0ff;
  transition: 0.3s;
}

input:focus, textarea:focus {
  border-color: #00ffff;
  box-shadow: 0 0 12px #00ffff;
}

::placeholder {
  color: rgba(255, 255, 255, 0.6); 
}
a[target="_blank"] {
  color: #00E6FF; 
  text-decoration: none;
}

a[target="_blank"]:hover {
  color: #0088aa; 
}
a[target="_blank"] {
  color: #d0f4fd; 
  text-decoration: none;
}

a[target="_blank"]:hover {
  color: #d0f4fd; 
}
.popup {
  display: none;
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.8);
  padding: 20px;
  border-radius: 10px;
  color: white;
}
/*@media (max-width: 768px) {
  body {
    font-size: 18px;
    transform: scale(1.75);
    transform-origin: top left;
  }
  .container, .form-container {
    max-width: 95%;
  }
}*/
#result {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.gtd {
  color: green;
}
.fcfs {
  color: orange;
}
.notfound {
  color: red;
}
.error {
  color: grey;
}
.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-container input {
  margin-bottom: 15px;
}
.form-container .btn {
  margin-bottom: 15px;
}