* {
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.login-container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: center;
}
.login-container img {
  width: 180px;
  margin-bottom: 1rem;
}
h2 {
  margin-bottom: 1.5rem;
  color: #333;
}
input[type="text"],input[type="email"],input[type="tel"], input[type="password"] {
  width: 100%;
  padding: 12px;
  margin: 0.5rem 0;
  border: 1px solid #ccc;
  border-radius: 8px;
}
button {
  width: 100%;
  padding: 12px;
  margin-top: 1rem;
  background-color: #e65b19;
  border: none;
  color: white;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}
.secondary-button {
  background-color: #444;
  margin-top: 0.5rem;
}
.link-button {
  background: none;
  color: #e65b19;
  margin-top: 1rem;
  text-decoration: underline;
  font-size: 0.9rem;
}
@media screen and (max-width: 480px) {
  .login-container {
    margin: 1rem;
  }
}
