/* Reset e configuração base */
@font-face {
  font-family: "HelveticaNowDisplay-Regular";
  src: url("./live/HelveticaNowDisplay-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML e Body */
html {
  background: url(./bg_live_jul_2025_inscr.png) no-repeat center center;
  background-size: cover;
  height: 85vh;
}

body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "HelveticaNowDisplay-Regular", sans-serif;
  color: white;
}

/* Container principal */
.container {
  width: 100%;
  max-width: 500px;
  padding: 1rem;
}

/* Container do formulário */
.form-container {
  background-color: #0b808d;
  padding: 1.75rem;
  padding-bottom: 2rem;
  border-radius: 2px 2rem 2px 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

  /* Animação de entrada */
  animation: slideDownFade 1s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Keyframes para animação suave */
@keyframes slideDownFade {
  0% {
    opacity: 0;
    transform: translateY(-30px);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.form-container h2 {
  margin: 0 0 15px 0;
  font-size: 2rem;
  text-align: center;
}
.form-container h2 span {
  font-weight: 300;
}

/* Formulário */
#cadastroForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

/* Form groups */
.form-group {
  width: 100%;
  margin-bottom: 0;
}

.form-group.submit-group {
  align-self: flex-end;
  width: 50%;
  margin-top: 10px;
}

/* Labels */
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
}

/* Inputs */
.form-group input {
  width: 100%;
  padding: 0.65rem 1rem;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 999px;
}

/* Remove botões de incremento dos inputs numéricos */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* Botão */
.form-group button {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  background-color: #006268;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-group button:hover {
  opacity: 0.9;
}

.flex {
  display: flex;
  gap: 1rem;
}
