/* Body */
body {
  margin: 0;
}

/* Button */
.btnPrimary {
  border-radius: 3px;
  padding: 8px;
  color: #fff;
  border-width: 1px;
  border-style: solid;
  background-color: #0454cc;
  border-color: #0454cc;
  cursor: pointer;
  min-width: 100px;
}
.btnPrimary:hover {
  background-color: #0c5cd3;
}

/* Logout Starts */
.logoutcontainer {
  /* display: flex;
  align-items: center; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.logoutimagebackground {
  width: 32%;
  display: flex;
  height: 100vh;
  align-items: center;
  background: url(../resources/moderndesktop/LoginImage.jpg) left bottom
    no-repeat;
  background-size: cover;
}
.logoutform {
  padding: 0px 0px 0px 80px;
}
.logoutlogo {
  height: 50px;
}
.logouttitle {
  margin: 20px 0px 10px 0px;
  color: #444;
  font-size: 26px;
  font-family: Arial, Helvetica, sans-serif;
}
.logouttext {
  margin: 0px 0px 50px 0px;
  color: #444;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Application Error Starts */
.appContainer {
  display: flex;
  align-items: center;
  height: 100vh;
  justify-content: center;
  text-align: center;
}
.appError {
  font-family: Arial, Helvetica, sans-serif;
}
.appError h2 {
  color: #444;
  padding: 15px 0px;
  margin: 0px;
  font-weight: bold;
  font-size: 24px;
}
.appError p {
  color: #444;
  padding: 0px 0px 15px 0px;
  margin: 0px;
  line-height: 22px;
  font-size: 14px;
}

/* Login Starts */
.animatedbg {
  padding: 0;
  margin: 0;
  height: 100vh;
  background: #151b26;
  /* animation: pulse 5s infinite; */
}

.loadingwrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  padding: 10px 15px;
  margin: 0;
  border-radius: 30px;
  box-sizing: border-box;
  background: #fff;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.loading {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 10px;
  background: #f1f1f1;
  /* box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); */
  border-radius: 5px;
  overflow: hidden;
}

.loading:after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  animation: load 5s infinite;
}

@keyframes load {
  0% {
    width: 0;
    /* background: #a28089; */
    background: #b64f05;
  }

  25% {
    width: 40%;
    /* background: #a0d2eb; */
    background: #b64f05;
  }

  50% {
    width: 60%;
    /* background: #ffa8b6; */
    background: #b64f05;
  }

  75% {
    width: 75%;
    /* background: #d0bdf4; */
    background: #b64f05;
  }

  100% {
    width: 100%;
    /* background: #494d5f; */
    background: #b64f05;
  }
}

/* @keyframes pulse {
  0% {
    background: #a28089;
  }

  25% {
    background: #a0d2eb;
  }

  50% {
    background: #ffa8b6;
  }

  75% {
    background: #d0bdf4;
  }

  100% {
    background: #494d5f;
  }
} */

.hide {
  display: none;
}

@media screen and (max-width: 600px) {
  .logoutlogo {
    height: 30px;
  }
}
