/* -------- RESET -------- */
* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.hidden {
  display: none;
}

/* -------- BACKGROUND -------- */
body {
  margin: 0;
  min-height: 100vh;
  background:
    url("/img/watcha-bg.png") no-repeat left top fixed,
    lightgrey;
  background-size: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* -------- CARD -------- */
.container {
  background: white;
  padding: 32px;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

h1 {
  margin-top: 0;
  margin-bottom: 8px;
}

.welcome {
  color: #555;
  margin-bottom: 24px;
}

/* -------- LINKS -------- */
ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

li {
  margin-bottom: 12px;
}

a.app {
  display: block;
  padding: 12px 16px;
  background: #f5f5f5;
  border-radius: 8px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: background 0.2s, transform 0.1s;
}

a.app:hover {
  background: #eaeaea;
  transform: translateY(-1px);
}

/* -------- LOGOUT -------- */
.logout {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background: #d9534f;
  color: white;
  font-size: 14px;
  cursor: pointer;
}

.logout:hover {
  background: #c9302c;
}
