.Page404 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  /* background: url(./assets/images/login-background.png) lightgray 50% / cover no-repeat; */
  background: var(--Background-bg-01, #F2F4F7);
  margin-bottom: 0;
}

.notfound {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}

.notfound-404 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.notfound-404 > * {
  color: var(--text-mi, #182940);
  text-align: center;
  font-family: Roboto;

  font-style: normal;
  font-weight: 500;
  line-height: 40px;
}

.notfound-404 > h1 {
  font-size: 32px;
}
.notfound-404 > h2 {
  font-size: 20px;
}

.notfound a {
  display: flex;
  padding: 13px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: var(--blue, #0765E3);
  color: #FFF !important;
  /* Roboto/Title/Large */
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 140% */
}