body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  max-width: 400px;
  width: 100%;
  text-align: center;
  animation: fadeIn 0.6s ease;
}
h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}
label {
  display: block;
  margin: 0.5rem 0 0.2rem;
  text-align: left;
  font-weight: 600;
  color: #444;
}
input {
  width: 95%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: border 0.2s;
}
input:focus {
  border-color: #4facfe;
  outline: none;
}
button {
  background: #4facfe;
  border: none;
  padding: 0.7rem 1.5rem;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
button:hover {
  background: #3b8beb;
}
img {
  padding:10px;
}
.note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}