*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f0f2f5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container { width: 100%; max-width: 420px; padding: 20px; }

.login-box {
  background: #fff;
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  text-align: center;
}

h1 { font-size: 1.6rem; color: #1a1a2e; margin-bottom: 6px; }

.subtitle { color: #888; font-size: .9rem; margin-bottom: 28px; }

input {
  display: block;
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid #dde;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border .2s;
}
input:focus { border-color: #4f8ef7; }

button {
  width: 100%;
  padding: 13px;
  background: #4f8ef7;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s;
}
button:hover { background: #3a7de5; }

.error { color: #e55; font-size: .9rem; margin-bottom: 16px; }

footer { margin-top: 28px; color: #bbb; font-size: .8rem; }

/* Dashboard */
.dashboard { max-width: 900px; }

.dashboard header {
  background: #fff;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

h2 { font-size: 1.3rem; color: #1a1a2e; }
h3 { font-size: 1.1rem; color: #333; margin-bottom: 8px; }

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.album-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  font-size: 1.1rem;
  line-height: 1.8;
}

a { color: #4f8ef7; text-decoration: none; }
a:hover { text-decoration: underline; }
