/* warning page css */
body {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  min-height: 100vh; /* Full viewport height */
  margin: 0; /* Remove default body margin */
}

.warning {
  background-color: red;
  color: white;
  font: 400 1rem/1.625rem "Open Sans", sans-serif;
  padding: 20px; /* Add padding for spacing inside the box */
  text-align: center;
  display: flex;
  align-items: center; /* Align image and text vertically */
  border-radius: 8px; /* Optional: add rounded corners */
}

.warning img {
  margin-right: 10px; /* Space between image and text */
}

.warning p {
  margin: 0; /* Remove default margin */
}
