/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #ff7da5, #6ad5e7);
  color: #333;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  text-align: center;
  width: 90%;
  max-width: 400px;
}

.logo {
  max-width: 200px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #ff4f81;
}

p {
  margin-bottom: 1rem;
}

form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

input[type="email"] {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

button {
  background: #ff4f81;
  border: none;
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #e04472;
}

.hidden {
  display: none;
  margin-top: 1rem;
  color: #28a745;
  font-weight: bold;
}
