@import url(ingresso.css);
:root {
  --cor-fundo-escuro: #100f1c;
  --cor-principal-laranja: #ff8a71;
  --cor-texto-principal: #ffffff;
  --cor-texto-secundario: #a3a3b3;
  --cor-fundo-input: rgba(255, 255, 255, 0.05);
  --cor-borda-input: rgba(255, 255, 255, 0.2);
  --cor-fundo-ticket: rgba(122, 91, 222, 0.15);
  --cor-borda-ticket: rgba(122, 91, 222, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--cor-fundo-escuro);
  background-image: url('../images/background-desktop.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  color: var(--cor-texto-principal);
  font-family: 'inconsolata', monospace;

  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 580px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.decorative-element {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    max-width: 100%;
    height: auto;
}

.decorative-element.top-right {
    top: 0;
    right: 0;
}

.decorative-element.bottom-left {
    bottom: 0;
    left: 0;
}

header, main, footer {
    width: 100%;
}

header {
  margin-bottom: 40px;
}

header img {
    max-width: 250px;
    margin-bottom: 32px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

footer {
    margin-top: 40px;
    text-align: center;
}

h1 {
  font-size: 2.25rem;
  line-height: 1.2;
}

h1 span, strong {
  color: var(--cor-principal-laranja);
}

p {
  color: var(--cor-texto-secundario);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  text-align: left;
}
.form-group > label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}
input[type="text"], input[type="email"] {
  width: 100%;
  padding: 16px;
  background-color: var(--cor-fundo-input);
  border: 1px solid var(--cor-borda-input);
  border-radius: 8px;
  color: var(--cor-texto-principal);
  font-size: 1rem;
}
input::placeholder { color: var(--cor-texto-secundario); }
button[type="submit"] {
  padding: 16px;
  background-color: var(--cor-principal-laranja);
  color: var(--cor-fundo-escuro);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin-top: 16px;
}
button[type="submit"]:hover { transform: scale(1.02); }
#drop-area { display: flex; 
  flex-direction:
   column; align-items: 
   center; justify-content: 
   center; padding: 32px; 
   background-color: var(--cor-fundo-input); 
   border: 2px dashed var(--cor-borda-input);
   border-radius: 8px; cursor: pointer;
   transition: all 0.2s ease;
}
#drop-area-content img { 
  margin-bottom: 16px; 
}
#drop-area-content p { 
  color: var(--cor-texto-principal); 
  font-weight: 500; 
}
#drop-area-content span { 
  font-size: 0.8rem; 
  color: var(--cor-texto-secundario); 
  margin-top: 8px; 
}

.error-message {
  color: #ff7675;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
  height: 1rem;
}

.input-error {
  border: 1px solid #ff7675 !important;
}