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

body {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  font-family: 'Open Sans', sans-serif;
  color: #ffffff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 20px;
}

.brand {
  font-family: 'Staatliches', cursive;
  font-size: 3rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: #ff4d00; /* grill/fire vibe */
}

.title {
  font-size: 2.5rem;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 30px;
}

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

input {
  padding: 10px;
  width: 250px;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  color: #fff;
  outline: none;
}

input::placeholder {
  color: #aaa;
}

button {
  padding: 10px 20px;
  border: 1px solid #ff4d00;
  background: transparent;
  color: #ff4d00;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background: #ff4d00;
  color: #000;
}