body {
  font-family: Segoe UI, Arial;
  background: #f5f7fb;
}

.container {
  display: flex;
  height: 100vh;
}

.left {
  width: 45%;
  background: #1e5aef;
  color: white;
  padding: 60px;
}

.right {
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 360px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
}

.card button {
  width: 100%;
  padding: 10px;
  background: #1e5aef;
  color: white;
  border: none;
  cursor: pointer;
}

.dashboard button {
  margin: 5px;
}

.logout {
  background: #c0392b;
}

.error {
  color: red;
}

.page {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f7fb;
}

.dash-card {
  width: 420px;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  text-align: center;
}

.dash-card h2 {
  margin-bottom: 30px;
}

button.region {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  font-size: 16px;
  background: #1e5aef;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

button.region:hover {
  background: #1748c9;
  transform: translateY(-2px);
}

button.logout {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  background: #c0392b;
  color: #fff;
  border: none;
  border-radius: 8px;
}
