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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #212121;
  padding: 20px;
}

.container {
  background: #fff;
  padding: 40px;
  text-align: center;
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
}

h1 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  font-size: 1.6rem;
}

.instructions {
  text-align: left;
  font-size: 0.9rem;
  color: #444;
  background: #f7f7f7;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 25px;
  line-height: 1.5;
}

.instructions ol {
  margin-left: 18px;
}

.disclaimer {
  margin-top: 25px;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  line-height: 1.4;
}

.disclaimer a {
  color: #CD201F;
  text-decoration: none;
}

.disclaimer a:hover {
  text-decoration: underline;
}

input[type="file"] {
  display: none;
}

button {
  padding: 12px 25px;
  border: none;
  background-color: #CD201F;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #a51a19;
}