/* careando Coming Soon – Glassmorphism */
:root {
  --green: #7AA381;
  --lavender: #A097C3;
  --sand: #F8F5EF;
  --bg-blur: rgba(255, 255, 255, 0.2);
  --text: #2F2F2F;
  --border: rgba(255, 255, 255, 0.3);
  --radius: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  min-height: 100vh;
  font-family: 'Open Sans', sans-serif;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
}
.container {
  background: var(--bg-blur); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; max-width: 400px; width: 90%;
  text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.logo { max-width: 180px; margin-bottom: 1rem; }
h1 {
  font-size: 2rem; color: var(--green); margin-bottom: 0.5rem;
}
.notice {
  color: var(--green); margin-bottom: 1rem; font-weight: bold;
}
p {
  color: var(--text); margin-bottom: 1.5rem;
}
form { display: flex; flex-direction: column; gap: 0.5rem; }
input[type="email"] {
  padding: 0.75rem; border: none; border-radius: var(--radius);
  font-size: 1rem; outline: none;
}
button {
  padding: 0.75rem; background: var(--green); color: #fff;
  font-size: 1rem; font-weight: bold; border: none;
  border-radius: var(--radius); cursor: pointer;
}
button:hover { background: #628b6b; }
footer { margin-top: 2rem; color: var(--lavender); font-size: 0.8rem; }
@media(max-width: 480px) {
  .container { padding: 1rem; }
  h1 { font-size: 1.5rem; }
}
