body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  color: #333;
}

/* TOP BAR */
.header {
  width: 100%;
  background-color: #222;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-sizing: border-box;
}

.header h1 {
  margin: 0;
  font-size: 20px;
}

.nav-buttons a {
  margin-left: 10px;
}

/* CONTENT WRAPPER */
.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

/* TITLES */
h2 {
  text-align: center;
  margin-top: 40px;
}

/* TEXT */
section p {
  text-align: justify;
  line-height: 1.6;
}

/* HERO */
.hero {
  padding: 60px 20px;
  background-color: #eef3f8;
  text-align: center;
}

.hero p {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 20px;
  text-align: justify;
  line-height: 1.6;
}

/* BUTTONS */
button, .link-button, .main-button {
  padding: 10px 16px;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

button {
  background-color: #007BFF;
  color: white;
  transition: 0.2s ease;
}

button:disabled {
  background-color: #aaa;
  cursor: not-allowed;
  opacity: 0.7;
}

button:hover {
  background-color: #0056b3;
}

.link-button {
  background-color: #555;
  color: white;
}

.link-button:hover {
  background-color: #444;
}

.main-button {
  background-color: #007BFF;
  color: white;
  display: inline-block;
  margin-top: 15px;
}

/* DROPZONE */
#dropzone {
  border: 2px dashed #888;
  padding: 40px;
  text-align: center;
  margin: 20px auto 5px auto;
  max-width: 400px;
  width: 100%;
  cursor: pointer;
  background-color: #fff;
  border-radius: 6px;
}

/* RESULT BOX */
.result {
  margin-top: 20px;
  padding: 15px;
  background: #eee;
  border-radius: 5px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #ddd;
  margin-top: 40px;
}

.real {
  background-color: #d4edda;
  border: 1px solid #28a745;
}

.fake {
  background-color: #f8d7da;
  border: 1px solid #dc3545;
}


input, textarea {
  width: 250px;
  padding: 10px;
  box-sizing: border-box;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.consent-box input[type="checkbox"] {
  width: auto;
  margin: 0;
  padding: 0;
}

.consent-box {
  display: flex;
  justify-content: center; 
  align-items: center;
}

.consent-box label {
  display: flex;
  align-items: center;
  gap: 8px; 
  cursor: pointer;
}

.password-wrapper {
  position: relative;
  width: 250px;
}

.password-wrapper i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #000;
}

.no-bullets {
  list-style: none;
  padding-left: 0;
}

a {
  text-decoration: none;
  color: #1a73e8;
}

a:hover {
  text-decoration: underline;
  color: #0b57d0;
}