body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

/* HEADINGS */
h1, h2 {
  color: #111;
  margin-bottom: 20px;
}

/* LOGIN CENTER */
.login-wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  width: 320px;
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.login-logo img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

/* INPUTS */
.login-box input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
}

/* BUTTON */
.login-box button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
}
