* { box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffd1dc, #ffe4b5);
  color: #333;
}

body.empty {
  background: #e8d4c0;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.empty main {
  width: 100%;
  max-width: 420px;
  padding: 2rem;
}

.monogram {
  width: 100%;
  height: auto;
  display: block;
}

.topbar {
  background: white;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.topbar .logout {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar .logout span {
  color: #666;
  font-size: 0.9rem;
}

.topbar .logout button {
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 0.85rem;
}

.topbar .logout button:hover {
  background: #f5f5f5;
}

.card {
  background: white;
  max-width: 480px;
  margin: 3rem auto;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

h1 {
  margin: 0 0 1rem;
  font-size: 2rem;
}

p { line-height: 1.5; }

form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

input[type="email"] {
  padding: 12px 14px;
  font-size: 1rem;
  border: 2px solid #eee;
  border-radius: 8px;
  outline: none;
}

input[type="email"]:focus {
  border-color: #ff6b9d;
}

button {
  padding: 12px 14px;
  font-size: 1rem;
  background: #ff6b9d;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

button:hover { background: #ff4d87; }

.success {
  background: #e8f5e9;
  border-left: 4px solid #4caf50;
  padding: 1rem;
  border-radius: 6px;
}

.error {
  background: #fde8e8;
  border-left: 4px solid #e53935;
  padding: 1rem;
  border-radius: 6px;
  color: #c62828;
}

ul { line-height: 1.8; }
