/* 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 */
.logoutimagebackground {
  height: 100vh;
  background: rgb(97, 80, 221);
  background: -moz-linear-gradient(60deg, rgba(97, 80, 221, 1) 0%, rgba(109, 79, 212, 1) 20%, rgba(169, 52, 146, 1) 50%, rgba(242, 28, 68, 1) 80%, rgba(255, 52, 30, 1) 100%);
  background: -webkit-linear-gradient(60deg, rgba(97, 80, 221, 1) 0%, rgba(109, 79, 212, 1) 20%, rgba(169, 52, 146, 1) 50%, rgba(242, 28, 68, 1) 80%, rgba(255, 52, 30, 1) 100%);
  background: linear-gradient(60deg, rgba(97, 80, 221, 1) 0%, rgba(109, 79, 212, 1) 20%, rgba(169, 52, 146, 1) 50%, rgba(242, 28, 68, 1) 80%, rgba(255, 52, 30, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6150dd", endColorstr="#ff341e", GradientType=1);
  box-shadow: inset 0 0 0 1000px rgba(21, 27, 38, .3);
}

.logoutcontainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}

.logoutform {
  padding: 0px 0px 0px 80px;
}

.logoutlogo {
  height: 50px;
}

.logouttitle {
  margin: 20px 0px 10px 0px;
  color: #444;
  font-size: 1.625rem;
  font-family: Arial, Helvetica, sans-serif;
}

.logouttext {
  margin: 0px 0px 50px 0px;
  color: #444;
  font-size: 0.875rem;
  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: 1.5rem;
}

.appError p {
  color: #444;
  padding: 0px 0px 15px 0px;
  margin: 0px;
  line-height: 22px;
  font-size: 0.875rem;
}

/* Login Starts */
.animatedbg {
  padding: 0;
  margin: 0;
  height: 100vh;
  background: rgb(97, 80, 221);
  background: -moz-linear-gradient(60deg, rgba(97, 80, 221, 1) 0%, rgba(109, 79, 212, 1) 20%, rgba(169, 52, 146, 1) 50%, rgba(242, 28, 68, 1) 80%, rgba(255, 52, 30, 1) 100%);
  background: -webkit-linear-gradient(60deg, rgba(97, 80, 221, 1) 0%, rgba(109, 79, 212, 1) 20%, rgba(169, 52, 146, 1) 50%, rgba(242, 28, 68, 1) 80%, rgba(255, 52, 30, 1) 100%);
  background: linear-gradient(60deg, rgba(97, 80, 221, 1) 0%, rgba(109, 79, 212, 1) 20%, rgba(169, 52, 146, 1) 50%, rgba(242, 28, 68, 1) 80%, rgba(255, 52, 30, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6150dd", endColorstr="#ff341e", GradientType=1);
  box-shadow: inset 0 0 0 1000px rgba(21, 27, 38, .3);
  /* 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;
  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: mainloader 5s infinite;
}

@keyframes mainloader {
  0% {
    width: 0;
    background: #6150dd;
  }

  25% {
    width: 40%;
    background: #6150dd;
  }

  50% {
    width: 60%;
    background: #6150dd;
  }

  75% {
    width: 75%;
    background: #6150dd;
  }

  100% {
    width: 100%;
    background: #6150dd;
  }
}

/* @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;
  }
}