body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #740d11, #740d11);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  width: 90%;
  max-width: 800px;
}

.logo {
  display: block;
  margin: 0 auto 20px auto; /* centers horizontally + adds bottom space */
  width: 100px;
  border-radius: 10px;
}

/* Optional: responsive tweak (for smaller screens) */
@media (max-width: 480px) {
  .logo {
      display: block;
    margin: 0 auto 20px auto; /* centers horizontally + adds bottom space */
    width: 80px; /* slightly smaller on mobile */
  }
}

h2 {
  text-align: center;
  color: #740d11;
  margin-bottom: 25px;
}

form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

input, select {
  flex: 1 1 calc(100% - 10px);
  min-width: 250px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

label {
  flex-basis: 100%;
  margin-top: 10px;
  font-weight: 600;
  color: #333;
}

button {
  flex-basis: 100%;
  background: #740d11;
  color: white;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
}

button:hover {
  background: #740d11;
}

#mobile-status {
  flex-basis: 100%;
  font-size: 14px;
}

.terms {
  flex-basis: 100%;
  font-size: 14px;
  margin-top: 10px;
}

@media(max-width: 768px) {
  input, select {
    flex: 1 1 100%;
  }
}


/* bigger native checkbox */
input[type="checkbox"].big {
	width: 18px;
	height: 18px;
	transform: scale(1.3);
	accent-color: #740d11;
	margin-right: 8px;
	outline: 3px solid #740d11;
	outline-offset: 0px;
}

/* focus ring for accessibility */
input[type="checkbox"].big:focus {
  outline: 3px solid #740d11;
  outline-offset: 0px;
}
