body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f5f7fa;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 800px;
  text-align: center;
}

.logo {
  max-width: 180px;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
  text-align: left;
}

input[type="text"],
input[type="file"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #df7239;
  font-size: 14px;
}

button {
  background-color: #0b2033;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #590505;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

table thead {
  background-color: #f0f0f0;
}

table th, table td {
  padding: 10px;
  border: 1px solid #df7239;
  text-align: left;
  font-size: 14px;
}

table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.upload-linha {
  display: flex;
  align-items: baseline;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.upload-linha input[type="file"] {
  flex: 1;
  font-size: 14px;
  height: 38px;
  padding: 6px 10px;
  box-sizing: border-box;
}

.upload-linha button {
  height: 42px;
  padding: 0 20px;
  font-weight: bold;
}

.campo-codigo input {
  padding: 10px;
  font-size: 16px;
  width: 200px;
  text-align: center;
}

.campo-codigo #email_input{width:420px;}

.opcoes-gerar label {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid #df7239;
  border-radius: 6px;
  background: #f9f9f9;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.opcoes-gerar label:has(input[type="checkbox"]:checked) {
  background-color: #e0f0ff;
  border-color: #590505;
}

.opcoes-gerar input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #007BFF;
}

.barra-progresso-container {
  width: 60%;
  height: 12px;
  background-color: #ccc;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.barra-progresso {
  height: 100%;
  width: 0%;
  background-color: #df7239;
  animation: progressoAnimado 17s linear forwards;
}

@keyframes progressoAnimado {
  from { width: 0%; }
  to { width: 100%; }
}

input[type="text"]:not(:placeholder-shown) {
  background-color: #e0f0ff;
}
