*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
}

.container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
}

h1{
  text-align: center;
  font-size: 1em;
}
.hero {
  text-align: center;
  margin-top: 15px;
}

.last-name {
  font-size: 3rem;
  font-weight: 800;
  margin: 10px 0;
}

.meta {
  font-size: 0.9rem;
  opacity: 0.7;
}

.countries {
  font-size: 0.9rem;
  opacity: 0.75;
  display: block;
  margin-top: 4px;
}


.form-section {
  margin: 40px 0;
  width: 100%;
}

input {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  margin-bottom: 10px;
}

button {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: #22c55e;
  color: #000;
  font-weight: bold;
}

.previous ul {
  list-style: none;
  padding: 0;
}

.previous li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.layout {
  display: flex;
  justify-content: center;
}

.ad-column {
  width: 160px;
  display: none;
}

.container {
  max-width: 640px;
  padding: 20px;
}

.bc{
  width: 100%;
  display: block;
  text-align: center;
}

.back-link a{
  text-decoration: underline;
  color: white;
}
.back-link a:hover{
  color: #22c55e;
}


footer a{
  text-decoration: underline;
  color: white;
}

footer a:hover{
  color: #22c55e;
}

/* Show ads on larger screens */
@media (min-width: 1024px) {
  .ad-column {
    display: block;
  }
}
