/*
  HTML guide for sorting <th>

  <th class="sortable-th" id="thFirstName">First Name</th>
  <tbody id="manageUsersTbody">
    <tr id="manageUsersTR_@i">
      <td class="sortFirstName">Albert</td>
*/
@import url(https://cdn.jsdelivr.net/gh/Gabe-Fernandes/StyleDashRepo/dist/styleDash.css);
.status-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
}
.status-wrap .Resolved {
  height: 1.4rem;
  width: 1.4rem;
  min-height: 1.4rem;
  min-width: 1.4rem;
  border-radius: 50%;
  background-color: #17993c;
  position: relative;
  margin: 0 auto;
  margin: 0vh 0.5vw;
}
.status-wrap .Resolved div {
  background-color: #F9F9F9;
  border-radius: 0.4rem;
  position: absolute;
  width: 0.1162rem;
  height: 0.4662rem;
  top: 72%;
  left: 19%;
  transform: translate(-20%, -65%) rotate(-45deg);
}
.status-wrap .Resolved div + div {
  width: 0.1162rem;
  height: 1.05rem;
  top: 15%;
  left: 55%;
  transform: translate(-55%, 0%) rotate(45deg);
}
.status-wrap .Progressing {
  height: 1.4rem;
  width: 1.4rem;
  min-height: 1.4rem;
  min-width: 1.4rem;
  border-radius: 50%;
  background-color: #FDDA16;
  position: relative;
  margin: 0 auto;
  margin: 0vh 0.5vw;
}
.status-wrap .Progressing div {
  width: 1.00002rem;
  height: 0.14rem;
  background-color: #F9F9F9;
  border: 0.07rem solid #FDDA16;
  border-radius: 0.4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.status-wrap .Progressing div + div {
  opacity: 0%;
}
.status-wrap .Rejected {
  height: 1.4rem;
  width: 1.4rem;
  min-height: 1.4rem;
  min-width: 1.4rem;
  border-radius: 50%;
  background-color: #781d1d;
  position: relative;
  box-shadow: inset 0 0 0.1rem 0.1rem #781d1d;
  margin: 0 auto;
  margin: 0vh 0.5vw;
}
.status-wrap .Rejected div {
  width: 0.1162rem;
  height: 1.00002rem;
  background-color: #F9F9F9;
  border-radius: 0.4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.status-wrap .Rejected div + div {
  transform: translate(-50%, -50%) rotate(45deg);
}
.status-wrap .Unaddressed {
  height: 1.4rem;
  width: 1.4rem;
  min-height: 1.4rem;
  min-width: 1.4rem;
  border-radius: 50%;
  background-color: #FDDA16;
  position: relative;
  margin: 0 auto;
  margin: 0vh 0.5vw;
  background-color: gray;
}
.status-wrap .Unaddressed div {
  width: 1.00002rem;
  height: 0.14rem;
  background-color: #F9F9F9;
  border: 0.07rem solid #FDDA16;
  border-radius: 0.4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.status-wrap .Unaddressed div + div {
  opacity: 0%;
}
.status-wrap .Unaddressed div {
  border: none;
}

#loginContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}
#loginContent .title-wrap {
  padding-top: 10vh;
}
#loginContent .title-wrap h1 {
  color: black;
}
#loginContent .login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20vw;
  height: 50vh;
  transition: width 0.3s;
  margin: 0 auto;
}
#loginContent .login-form .input-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 15%;
  position: relative;
}
#loginContent .login-form .input-wrap input {
  width: 90%;
  height: 70%;
  border-radius: 0.3rem;
}
#loginContent .login-form .input-wrap img {
  height: 2rem;
  width: 2rem;
  min-height: 2rem;
  min-width: 2rem;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  right: 8%;
}
#loginContent .login-form .btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 15%;
}
#loginContent .login-form .btn-wrap button {
  width: 90%;
  border-radius: 0.3rem;
}
#loginContent .link-div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 15vh;
}
#loginContent .link-div div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  width: 33%;
}
#loginContent .link-div div a {
  text-decoration: underline;
  cursor: pointer;
  color: black;
}
@media (max-width: 768px) {
  #loginContent .login-form {
    width: 50vw;
  }
}

.login-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30vw;
  height: 30vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  background-color: #2E3349;
  border-radius: 1rem;
  box-shadow: 0 0 0.2rem 0.1rem #C8C8C8;
  transition: width 0.25s;
  background-color: #C8C8C8;
  justify-content: center;
}
.login-modal h3 {
  font-size: 1.8em;
  width: 80%;
  margin-top: 1.5vh;
  color: black;
}
.login-modal form {
  width: 60%;
  margin: 1% 0%;
}
.login-modal form .input-err-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 5vh;
  position: relative;
  margin: 2vh 0vw;
}
.login-modal form .input-err-wrap input {
  width: 100%;
  height: 100%;
  border-radius: 0.6em;
  text-indent: 5%;
  font-size: 1em;
}
.login-modal form button {
  width: 100%;
  border-radius: 0.3rem;
}
.login-modal .confirmation-wrap {
  width: 100%;
}
.login-modal .confirmation-wrap .confirmation {
  margin-top: 2vh;
}
.login-modal .close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 5%;
  right: 5%;
  margin: 0rem 0.5rem;
  background-color: white;
  cursor: pointer;
  border-radius: 1rem;
  margin: 0;
  top: 10%;
}
.login-modal .close-btn img {
  height: 2rem;
  width: 2rem;
  min-height: 2rem;
  min-width: 2rem;
  border-radius: 50%;
}
.login-modal .failed-login-err {
  top: 43.8%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.login-modal span:not(.err) {
  color: black;
}

/*# sourceMappingURL=login.css.map */
