* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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&family=SUSE+Mono:ital,wght@0,100..800;1,100..800&display=swap");
body,
html {
  overflow-x: clip;
}
label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgb(43, 43, 43);
}
.main-div-input-page {
  label {
    font-family: "Poppins";
  }
  input,
  textarea {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    border: 1px solid rgb(219, 219, 219) !important;
    border-radius: 0px !important;
    transition: 0.3s;
    font-family: "Poppins";
    &:focus {
      border: 1px solid rgb(0, 0, 0) !important;
    }
    &::placeholder {
      font-size: 12px;
      color: rgb(180, 180, 180);
      font-style: italic;
      font-family: "Poppins";
      letter-spacing: 1px;
    }
  }
}

.all-post-page {
  font-family: "Poppins";
  .container {
    .row {
      > div {
        margin-top: 1.5rem;
      }
    }
  }
  .inner-div {
    line-height: 35px;
    border-radius: 5px;
    border: 2px solid rgb(228, 228, 228);
    padding: 3rem 1.5rem !important;
    /*padding:1.5rem;*/
    .btn-div {
      padding: 0;
      margin: 0;
    }
    > span {
      font-size: 12px;
      color: red;
    }
    .title {
      color: #006b23;
      margin-top: 0.75rem;
    }
    h2{
        text-transform: capitalize;
        font-family: "Montserrat";
        font-weight: 700;
        font-size: 20px;
        margin: 0;
    }
    h6 {
      font-size: 14px;
      font-weight: 700;
      font-family: "Montserrat";
      color: rgb(0, 0, 0);
    }

    strong {
      font-weight: 600;
      color: rgb(75, 75, 75);
    }
  }
}

button.course-accordion {
  background-color: transparent;
  color: rgb(0, 0, 0);
  cursor: pointer;
  padding: 5px 1rem;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.4s;
  font-family: "Montserrat";
  text-transform: none;
  letter-spacing: 0px;
  font-weight: 600;
  font-style: normal;
  border: 1px solid #d9d9d9;
}

/*When the button is active or mouse hovers*/
button.course-accordion.active,
button.course-accordion:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

/*button not active*/
button.course-accordion:after {
  content: "\002B";
  color: black;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

/* minus button */
button.course-accordion.active:after {
  content: "\2212";
}

div.course-panel {
  padding: 0 18px;
  background-color: transparent;
  /* background-color: #e9e9e9; */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  width: 100%;
  font-family: "Poppins";
  font-size: 12px;
  letter-spacing: 0.4px;
  font-weight: 400;
  font-style: normal;
  color: rgba(0, 0, 0, 0.88);
  border: 1px solid #d9d9d9;
  border-top: 0px;
}

table {
  font-family: "Poppins";
  font-size: 12px;
  box-shadow: 0px 0px 20px -5px gray;
  padding: 10px;
  th {
    font-weight: normal;
  }
}
.login-container-main {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

@media (max-width: 720px) {
  .main-div-input-page {
    .container {
      .row {
        > div {
          width: 100%;
        }
      }
    }
  }
  .header-container {
    .row {
      > div {
        justify-content: start !important;
      }
    }
  }
  .login-container-main {
    align-items: start;
    justify-content: start;
    .row {
      padding: 5px;
    }
  }
}
.login-password-input{
  position: relative;
}
#toggler{
  position: absolute;
  top:50%;
  right:1rem;
  cursor: pointer;
}

