/* Base styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #0d1117;
  color: #fff;
}

/* Layout */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
  text-align: center;
}

/* Main heading */
.headline {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Brand colours */
.brand {
  font-weight: 700;
}

.bizzi {
  color: #00bcd4; /* Turquoise for 'Bizzi' */
}

.ai {
  color: #ff4081; /* Pink for 'Ai' */
}

/* Subheadline */
.subtext {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 2rem;
}

/* Form headline */
h2 {
  font-size: 1.5rem;
  color: #00bcd4;
  margin-top: 2rem;
}

/* Form intro text */
p {
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  color: #ddd;
}

/* Form layout */
form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 1rem auto 2rem;
}

/* Form inputs */
input {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Submit button */
button {
  padding: 0.75rem;
  background-color: #00bcd4;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #0097a7;
}

/* Small print below form */
small {
  font-size: 0.8rem;
  color: #aaa;
  text-align: center;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #00bcd4;
  color: white;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}

.cta-button:hover {
  background-color: #0097a7;
}
