@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
#body {
  background: #aab9d6;
  font-family: "Poppins", system-ui;
  height: 100vh; /* Ensures full height */
  margin: 0;
}
#bodydash {
  background-color: #ecf0f5;
  font-family: "Inter", sans-serif;
}
* {
  font-family: "Poppins", system-ui;
}

.HomePageHeader {
  width: 100%;
  height: 40px;
  background-color: #000000;
  display: none;
  align-items: center;
  justify-content: center;
}
.HomePageHeader p {
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

.labelPageBoxLogin {
  height: auto;
  display: grid;
  align-items: center;
  justify-content: center;
}
.imageboxdiv {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 50px;
  display: grid;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: -70px;
  border: 1px solid #ccc;
}
.labelPageBoxLogin img {
  width: 70px;
  height: 70px;
  border-radius: 50px;
}
.text-between {
  display: flex;
  align-items: center;
  text-align: center;
}

.text-between::before,
.text-between::after {
  content: "";
  flex: 1;
  border-bottom: 2px solid #000;
  margin: 5px;
}
.text-between span {
  background-color: #b60b16;
  padding: 0px 10px;
  font-size: 14px;
  color: #fff;
}

.loginBox {
  border: 1px solid #ccc;
  border-radius: 5px;
}
.loginBox img {
  width: 40%;
  object-fit: cover;
  margin-right: 25px;
}
.lginForm input {
  font-size: 13px;
  background-color: #f0f0f0;
}
.lginForm input::placeholder {
  color: #9ca19f;
}
.lginForm select {
  font-size: 13px;
  cursor: pointer;
  background-color: #f1f1f2;
}
.lginForm textarea {
  font-size: 13px;
  background-color: #f0f0f0;
}
.form-label {
  font-size: 13px;
}
#submitBtn {
  background-color: #b60b16;
  border: 0px;
  width: 100%;
  height: 38px;
  color: #fff;
  font-size: 13px;
}
.newUsrTitle {
  font-size: 12px;
}
#error-message {
  font-size: 14px;
}

@media only screen and (max-width: 450px) {
  .imageboxdiv {
    margin-bottom: -50px;
  }
}
