/* Center the login box on the screen */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #f4f4f4;
  margin: 0;
}

/* Layout and spacing only */
.login-box {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-box form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
