/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #ffffff; /* White background to match logo */
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  align-items: center;
}

.logo {
  width: 180px; /* Larger logo */
  height: auto;
}

main {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.content-box {
  background-color: #f4f7f9; /* Slightly different to make box stand out */
  padding: 40px;
  border-radius: 15px;
  max-width: 900px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

h1 {
  font-size: 1.8rem; /* Increased header size */
  line-height: 1.4;
  margin-bottom: 20px;
  max-width: 100%;
}

p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

input[type="text"],
input[type="email"] {
  padding: 10px;
  flex: 1 1 40%;
  min-width: 180px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  background-color: #0073e6;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #005bb5;
}

footer {
  margin-top: 30px;
  padding: 10px 0;
  font-size: 0.8rem;
  color: #555;
}
.description {
  font-size: 1rem; /* Smaller font for description */
  margin-bottom: 25px;
}