@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

/* Page background */
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
}

/* Outer container – full screen grey background */
.outer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f2f5; /* light grey */
}

/* Login card */
.inner-container {
  width: 350px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}

/* Heading */
.form-heading {
  font-size: 26px;
  margin-bottom: 20px;
}

/* Error messages */
.error-message {
  color: #dc3545;
  font-size: 14px;
}
