/* ===== Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: radial-gradient(circle at left, #E6001D33, transparent 40%),
              radial-gradient(circle at right, #16D2F233, transparent 40%),
              #000;
  display: flex;
  justify-content: center;
  padding-top: 20px;          /* sobe o card */
  padding-bottom: 40px;
  color: #fff;
}

/* ===== Card ===== */
.container {
  width: 100%;
  max-width: 440px;
  padding: 22px 20px 18px;    /* top | left-right | bottom */
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  border: 1px solid #ffffff15;
  box-shadow: 0 0 40px #000;
}

/* ===== Logo / Banner ===== */
.logos {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;        /* aproxima do H1 */
}
.logos img {
  height: 220px;              /* ajuste conforme desejar (ex.: 300px) */
  object-fit: contain;
  filter: drop-shadow(0 0 6px #000);
  opacity: 0.95;
}

/* ===== Título / Subtítulo ===== */
h1 {
  text-align: center;
  color: #16D2F2;
  margin-bottom: 10px;
  font-size: 28px;
  letter-spacing: .3px;
}
.sub {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  margin-bottom: 14px;        /* aproxima do timer */
}

/* ===== Timer ===== */
.timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 10px 0 12px;
  text-align: center;
}
.timer div {
  background: #0e0e0e;
  border: 1px solid #222;
  padding: 10px 6px;
  border-radius: 10px;
}
.timer span {
  display: block;
  font-size: 20px;
  color: #16D2F2;
  font-weight: 800;
}
.timer small {
  color: #aaa;
  font-size: 11px;
}

/* ===== Campos (input + select com a MESMA cara) ===== */
input,
select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border-radius: 10px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 46px;
}
::placeholder { color: #7f7f7f; }

input:focus,
select:focus {
  outline: none;
  border-color: #16D2F2;
  box-shadow: 0 0 8px #16D2F266;
}

/* Aparência do select igual ao input (seta custom) */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #16D2F2 50%),
    linear-gradient(135deg, #16D2F2 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
select::-ms-expand { display: none; }

/* ===== Botão ===== */
button {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  background: linear-gradient(90deg, #E6001D, #16D2F2);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: .3s;
}
button:hover {
  opacity: .9;
  transform: scale(1.02);
}
button:disabled {
  filter: grayscale(.9);
  cursor: not-allowed;
}

/* ===== Rodapé ===== */
.footer {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: #777;
}

/* ===== Responsivo ===== */
@media (max-width: 430px) {
  .container { max-width: 360px; padding: 18px 16px 16px; }
  .logos img { height: 180px; }  /* reduz no mobile para caber melhor */
  h1 { font-size: 24px; }
  .timer span { font-size: 18px; }
}
/* Fim do CSS */