body {
  background: #181a1b;
  font-family: 'Inter', 'Arial', sans-serif;
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e3e3e3;
  overflow-x: hidden;
}
.container {
  background: #222426;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 300px;
  max-width: 370px;
  width: 100%;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 500px) {
  .container {
    min-width: unset;
    max-width: 95vw;
    padding: 20px 6vw;
    border-radius: 8px;
    gap: 14px;
  }
  .container h1 {
    font-size: 1.5rem;
  }
  input[type="text"], button {
    font-size: 1rem;
    padding: 10px 0;
  }
}
.logo-letterboxd {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.container h1 {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #000a;
  text-align: center;
  font-family: 'Inter', 'Arial', sans-serif;
}
.subtitle-fun {
  color: #00ff5f;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 18px;
  text-align: center;
  font-family: 'Inter', 'Arial', sans-serif;
}
input[type="text"] {
  padding: 12px 16px;
  border: 1.5px solid #444;
  border-radius: 8px;
  font-size: 18px;
  background: #181a1b;
  color: #e3e3e3;
  outline: none;
  margin-bottom: 8px;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.2s;
}
input[type="text"]:focus {
  border: 1.5px solid #00c8ff;
}
button {
  background: #00cc4c;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 2px 8px #0003;
  margin-bottom: 8px;
  transition: background 0.2s, color 0.2s;
}
button:hover {
  background: #009e38;
  color: #fff;
}
#mensagem {
  min-height: 20px;
  font-size: 15px;
  color: #00ff5f;
  margin-top: 8px;
}
/* Loading animado estilo Letterboxd */
.loading-spinner {
  border: 4px solid #222426;
  border-top: 4px solid #00ff5f;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px auto;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.privacy-link {
  display: block;
  margin-top: 10px;
  color: #aaa;
  font-size: 0.98rem;
  text-align: center;
  text-decoration: none;
  transition: color 0.2s;
}
.privacy-link:hover {
  color: #00ff5f;
  text-decoration: underline;
}
.logo-row {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  margin-bottom: -36px;
}
.pill-beta {
  background: #222;
  color: #00ff5f;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 14px;
  border: 1.5px solid #00ff5f;
  letter-spacing: 1px;
  box-shadow: 0 1px 4px #0002;
  margin-left: 2px;
  user-select: none;
}
.input-example {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 8px;
  margin-top: -4px;
  text-align: left;
  width: 100%;
  padding-left: 2px;
  user-select: none;
}
.links-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  margin-top: 2px;
  margin-bottom: 0;
}
.info-warning {
  background: #222426;
  color: #ff8000;
  border-left: 4px solid #ff8000;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 1.01rem;
  font-weight: 500;
} 