p {
  font-size: 14px;
}

body {
  font-family: "Poppins", sans-serif;
}

.flexBoxCenter {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loginSection {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: #2f255c;
}

.logo {
  width: 200px;
  margin-bottom: 30px;
}
.logo img {
  width: 100%;
}

.loginForm {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.loginForm form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 37px;
  background-color: #3c3171;
  border-radius: 20px;
}
.loginForm form h3 {
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
.loginForm form input {
  width: 100%;
  border-radius: 7px;
  outline: none;
  box-shadow: none;
  background-color: #f8f8f8;
  padding: 10px;
  border: solid 1px #e9e9e9;
  background-color: rgba(255, 255, 255, 0.09);
  border: solid 1px rgba(233, 233, 233, 0.388);
  margin-bottom: 10px;
  color: #fff;
}
.loginForm form ::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.loginForm form ::placeholder {
  color: #fff;
  opacity: 1;
}
.loginForm form button {
  display: block;
  padding: 10px 20px;
  color: #fff !important;
  background-color: #2f255c;
  text-transform: capitalize;
  font-weight: 100;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  text-decoration: none !important;
  text-decoration: none;
  font-size: 14px;
  border: none;
  outline: none;
  box-shadow: none;
  text-transform: uppercase;
  margin-top: 20px;
  width: 100%;
}
.loginForm form button:hover {
  background-color: #fff;
  color: #2f255c !important;
  transition-duration: 0.2s;
}

.dashboardSection {
  padding: 30px 0;
  height: 100vh;
  background-color: #f7f8f9;
}

.dashBoard {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
}
.dashBoard h3 {
  text-align: left;
  width: 100%;
  text-transform: uppercase;
  color: #2f255c;
  font-weight: 700;
  font-size: 18px;
}
.dashBoard ul {
  width: 100%;
  border-left: solid 1px #e2e2e2;
  border-right: solid 1px #e2e2e2;
  border-bottom: solid 1px #e2e2e2;
  padding: 0;
  margin: 0;
}
.dashBoard ul li {
  list-style-type: none;
  border-top: solid 1px #e2e2e2;
  padding: 0 10px;
  display: flex;
}
.dashBoard ul li aside {
  font-size: 14px;
  color: #000;
  padding: 0px 5px;
  display: flex;
  align-items: center;
}
.dashBoard ul li input {
  margin-right: 5px;
}

.firstContent {
  width: 26%;
  border-right: solid 1px #e2e2e2;
}

.secondContent {
  width: 57%;
}

.btnCover {
  display: flex;
}
.btnCover button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 2px 6px;
  border-radius: 6px;
  display: flex;
  margin: 2px;
  color: #fff;
}
.btnCover button:nth-child(1) {
  background-color: #00987f;
}
.btnCover button:nth-child(2) {
  background-color: red;
}
.btnCover button i {
  margin-right: 5px;
}
.btnCover button:hover {
  opacity: 0.5;
}

.btmBtnCover {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.btmBtnCover a {
  text-decoration: none;
  border: none;
  outline: none;
  padding: 2px 7px;
  background-color: #fff;
  color: #000;
  text-transform: uppercase;
  font-size: 10px;
  border: solid 1px #777;
  border-radius: 3px;
}
.btmBtnCover a:nth-child(1) {
  margin-right: 5px;
}
.btmBtnCover a:hover {
  background-color: #777;
  color: #fff;
}/*# sourceMappingURL=stylesheet.css.map */