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

body {
  background-color: black;
  color: white;
  font-family: 'Helvetica Neue', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
}

.logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

h1 {
  font-size: 3rem;
  color: #ff1e1e;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.application-form input,
.application-form textarea {
  padding: 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #1c1c1c;
  color: white;
}

.application-form input::placeholder,
.application-form textarea::placeholder {
  color: #777;
}

.application-form button {
  padding: 1rem;
  font-size: 1rem;
  background-color: #ff1e1e;
  color: black;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.application-form button:hover {
  background-color: #cc0000;
}

.form-footer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  color: black;
  background-color: #ff1e1e;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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