/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #FFF;
  background-color: #000;
}

header {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #BFFCC6;
}

header h1,
header .subtitle {
  color: #cc389d;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

header .subtitle {
  font-size: 1.2rem;
}

#progress-container {
  width: 90%;
  max-width: 960px;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  margin: 1rem auto;
}

#auth {

  margin: 1.5rem auto;
  max-width: 320px;
  background-color: #111;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  border: 1px solid #bd3692;
  box-shadow: 0 4px 20px rgba(189, 54, 146, 0.4);
  text-align: center;
}

#auth p {
  margin-bottom: 1rem;
  color: #FFB5E8;
}

.login-info {
  font-weight: bold;
  font-size: 1.1rem;
}

#auth form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#auth input,
#auth button {
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid #444;
  font-size: 1rem;
}

#auth input {
  width: 100%;
  background-color: #222;
  color: #fff;
}

#auth input::placeholder {
  color: #888;
}

#auth button {
  background-image: linear-gradient(90deg, #ff8bcb, #bd3692);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

#auth button:hover {
  opacity: 0.9;
}

#logout-btn {
  margin-top: 0.75rem;
  display: none;
  margin: 1rem 0;
}

#progress-bar {
  height: 20px;
  width: 0%;
  background-color: #bd3692;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 20px;
  transition: width 0.3s ease;
}

nav .menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  background-color: #BFFCC6;
}

nav .menu li {
  margin: 0 0.5rem;
}

nav .menu a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

main {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}

section {
  margin-bottom: 3rem;
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #FFB5E8;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

thead {
  background-color: #BFFCC6;
}

thead th {
  padding: 0.75rem;
  color: #000;
  text-align: left;
}

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

tbody td {
  padding: 0.75rem;
  border: 1px solid #444;
  color: #FFF;
}

a {
  color: #FFB5E8;
}

a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #BFFCC6;
  margin-top: 2rem;
}

footer p {
  margin-bottom: 0.5rem;
  color: #000;
}

footer a {
  color: #FFB5E8;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
