body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.container {
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}
.logo {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
h1 {
  margin: 2rem 0;
  font-size: 1.25rem;
  text-align: center;
}
label {
  display: block;
  margin-top: 1rem;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
}
.checkbox {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.checkbox input {
  margin-right: 0.5rem;
  cursor: pointer;
}
button {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.75rem;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 1rem;
}
button:disabled {
  background: #ccc;
  cursor: not-allowed;
}
