
html, body {
  margin: 0;
  padding: 0;
 overflow-x: hidden;
  height: 100%;
   max-width: 100%;
box-sizing: border-box;
   
}
* {
*,
*::before,
*::after {
  box-sizing: border-box;
}


.countdown-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-boby);
  color: #fbc02d;
  font-family: 'Orbitron', sans-serif;
  padding: 12px 24px;
  border-radius: 10px;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.1);
  font-size: 16px;
  gap: 16px;
  flex-wrap: wrap;
  
  margin-top: 20px;
    margin-bottom: 120px;
}

.countdown-bar .label {
  font-weight: 600;
  margin-right: 10px;
  color: #fbc02d;
  white-space: nowrap;
}

.countdown-values {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.countdown-values .group {
  display: flex;
  align-items: baseline;
  font-weight: 600;
}

.countdown-values .value {
  font-size: 16px;
  color: var(--text-color);
  min-width: 24px;
  text-align: right;
}

.countdown-values .unit {
  margin-left: 2px;
  font-size: 14px;
  color: #fbc02d;
}






/* Card */
.contact-card {
  font-family: 'Orbitron', sans-serif;
  border: 1px solid var(--bg-body);
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  /*box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);*/
  color: #fce9d2;
 
  position: relative;
  z-index: 1;
}


/* Dark overlay for readability */
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:var(--bg-body);
  border-radius: 12px;
  z-index:0;
}
.contact-card * {
  position: relative;
  z-index: 1;
}

.contact-card h2 {
 font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color:#facc15;
 
}

/* Labels */
.contact-card label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 5px;
  font-weight: bold;
  text-transform: uppercase;
  color:var(--text-color);
}

/* Inputs & Textarea */
.contact-card input,
.contact-card textarea,
.contact-card select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 1.2rem;
  background-color: var(--bg-container);
  border: 2px solid #B8B6B8;
  color: white;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-card textarea {
  resize: none;
  height: 120px;
}

/* Dropdown */
select {
  appearance: none;
}

/* Button */
.sub {
    display: inline-block !important;
  width: auto !important;
  min-width: 0;
  max-width: 100%;
  height: 40px;
  padding:8px 10px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  background: linear-gradient(to right, #525252, #fbc02d);
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease, transform 0.2s ease;
  font-family: 'Orbitron', sans-serif;
  white-space: nowrap;
   align-items: center;
  justify-content: center;
  width: 80%;
}

.sub:hover {
  background: linear-gradient(to right, #fbc02d, #525252);
  transform: scale(1.04);
}


/* Success Message */
.success-message {
  background-color: #0f5132;
  color: #d1e7dd;
  padding: 10px;
  border-radius: 6px;
  margin-top: 1rem;
  text-align: center;
  font-weight: bold;
  transition: opacity 0.8s ease-in-out;
  opacity: 1;
}
.success-message.fade-out {
  opacity: 0;
}

/* Countdown Timer */
.contact-card .countdown {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
  color: gold;
}
.contact-card .countdown span {
  font-family: monospace;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    padding: 10px;
  }
  .contact-card h2 {

  font-size:1.4rem;
 
  margin-bottom: 1.0rem;
 
  
}.countdown-bar {
 
    margin: 0px;
}

}


