﻿* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  background: linear-gradient(135deg, #1b0005, #3a000d, #220006);
}

.container {
  width: 100%;
  max-width: 500px;
  padding: 40px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.35);
  text-align: center;
  backdrop-filter: blur(5px);
}

.logo {
  width: 100%;
  max-width: 300px;
  margin-bottom: 25px;
  border-radius: 10px;
}

h1 {
  margin-bottom: 10px;
  color: #ffd700;
  letter-spacing: 3px;
}

.subtitulo {
  margin-bottom: 30px;
  color: #f0d37a;
}

input,
textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: #fff8e7;
  font-size: 16px;
}

textarea {
  height: 120px;
  resize: none;
}

button {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #d4a017, #ffd700);
  color: #2b0008;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: scale(1.03);
}

#mensagem {
  margin-top: 20px;
  font-size: 16px;
  color: #8cff8c;
}

/* CAMPO INVISIVEL */
#website {
  display: none;
}

.human-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #f5d98a;
}

.human-check input {
  width: auto;
}
