/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("assets/bg.jpg") no-repeat center center/cover;

  transform: scale(1.15);
  /* aumenta mais pra garantir */
  filter: blur(12px);

  z-index: -1;
}

/* Container principal (card) */
.container {
  background: #e6e6e6;
  width: 400px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}


#status {
  margin-top: 20px;
  font-size: 16px;

}

/* Títulos */
.container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  color: #0100eb;
  margin-bottom: 4px;
}

.container h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #00951b;
  margin-bottom: 15px;
}

.container p {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  margin-bottom: 15px;
}

/* Labels */
label {
  display: block;
  text-align: left;
  font-size: 13px;
  margin-bottom: 5px;
  color: #333;
}

.logo {
  width: 170px;
  margin-left: -15px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

/* Inputs e textarea */
input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  outline: none;
  font-size: 14px;
}

/* Textarea */
textarea {
  resize: none;
  height: 80px;
}

/* Botão */
button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #ff7a00, #ffb300);
  color: white;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Barra inferior */
.progress-bar {
  margin-top: 15px;
  height: 5px;
  border-radius: 5px;
  background: linear-gradient(90deg, green, orange, blue);
}
.hidden {
  display: none;
}
