/* ===== UNSECURE PAGES LAYOUT ===== */

body {
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  background-color: #F8F5FB;
  color: #222;
  overflow-x: hidden;
}

/* ================= SIMPLE APP BAR ================= */
.app-bar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;

  background-color: #6C1B8C;
  color: #fff;

  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 16px;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.logo {
  font-weight: 700;
  font-size: 18px;
}

/* ================= PAGE CONTENT ================= */
.container {
  padding: 20px 16px;
}
