.page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.page .side_bar {
  width: 20%;
  height: 100vh;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.page .side_bar .side_bar_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.page .side_bar .side_bar_top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.page .side_bar .side_bar_top .logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 20px 0;
}
.page .side_bar .side_bar_top .logo img {
  width: 20%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page .side_bar .side_bar_top .logo span {
  font-size: 22px;
  font-weight: 500;
}
.page .side_bar .side_bar_top .links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 5%;
  width: 100%;
}
.page .side_bar .side_bar_top .links .link {
  width: 100%;
  display: flex;
}
.page .side_bar .side_bar_top .links .link a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 20px 0;
  color: black;
  font-weight: 500;
  font-size: 20px;
  width: 100%;
}
.page .side_bar .side_bar_top .links .link .active {
  display: flex;
  align-items: center;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: darkblue;
  color: white;
  border-radius: 0 12px 12px 0;
}
.page .side_bar .side_bar_top .links .link .active_text {
  color: darkblue;
}
.page .side_bar .side_bar_bottom {
  margin-bottom: 50px;
}
.page .side_bar .side_bar_bottom button {
  background-color: black;
  border: none;
  padding: 10px 50px;
  color: white;
  font-weight: 700;
  border-radius: 20px;
}
.page .content {
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}
.page .content .nav_bar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.page .content .nav_bar .nav_content {
  width: 90%;
  padding: 20px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page .content .nav_bar .nav_content .title span {
  font-weight: 700;
  font-size: 20px;
}
.page .content .nav_bar .under_line {
  width: 95%;
  height: 2px;
  background-color: gray;
}
.page .content .table_container {
  width: 90%;
  margin: 5% auto;
}
.page .content .table_container table {
  width: 100%;
}
.page .content .courses {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  width: 90%;
  margin: 5% auto;
}
.page .content .courses .course {
  display: flex;
  justify-content: space-around;
  flex-basis: 32%;
  height: 200px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.page .content .courses .course .img {
  width: 40%;
  height: 90%;
  margin: auto 0;
}
.page .content .courses .course .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page .content .courses .course .about {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page .content .courses .course .about span {
  font-weight: 700;
  font-size: 20px;
}
.page .content .courses .course:hover {
  box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .page {
    overflow: hidden;
  }
  .page .side_bar {
    display: none;
    position: absolute;
    width: 60%;
    background-color: white;
  }
  .page .side_bar .side_bar_content .side_bar_top .links a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px 0;
    color: black;
    font-weight: 500;
    font-size: 15px;
    width: 100%;
  }
  .page .side_bar .side_bar_content .side_bar_top .links .active {
    color: white;
  }
  .page .content .table_container {
    overflow-x: scroll;
  }
  .page .content .courses {
    flex-direction: column;
  }
  .page .content .courses .course {
    width: 95%;
    margin: 10px auto;
  }
}
@media (max-width: 1280px) and (min-width: 767px) {
  .page .side_bar .side_bar_content .side_bar_top .links a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px 0;
    color: black;
    font-weight: 500;
    font-size: 15px;
    width: 100%;
  }
}
.stu_log {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
}
.stu_log .stu_log_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 80%;
  border-radius: 20px;
}
.stu_log .stu_log_container .right {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  border-radius: 10px 30px 30px 10px;
}
.stu_log .stu_log_container .right img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.stu_log .stu_log_container .right span {
  color: black;
  font-weight: 600;
}
.stu_log .stu_log_container .left {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 40%;
  height: 100%;
  padding: 30px;
}
.stu_log .stu_log_container .left .text {
  display: flex;
  flex-direction: column;
}
.stu_log .stu_log_container .left .text .main {
  color: black;
  font-size: 30px;
  font-weight: 700;
}
.stu_log .stu_log_container .left .text .secondary {
  font-size: 20px;
  color: gray;
  font-weight: 500;
}
.stu_log .stu_log_container .left form {
  margin-top: 5%;
  padding: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.stu_log .stu_log_container .left .loginBtn_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.stu_log .stu_log_container .left .loginBtn_container button {
  margin-top: 5%;
  width: 40%;
  background-color: darkblue;
  color: white;
  font-weight: 600;
  padding: 20px;
  border-radius: 12px;
  border: none;
  outline: none;
}
.stu_log .stu_log_container .left .loginBtn_container a {
  width: 50%;
}
.stu_log .stu_log_container .left div {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.stu_log .stu_log_container .left div input {
  border-radius: 7px;
  padding: 10px;
  border: 3px solid gray;
  width: 100%;
}
.stu_log .stu_log_container .left .footer {
  width: 100%;
  margin-top: 15%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.stu_log .stu_log_container .left .footer .line {
  height: 5px;
  width: 100%;
  background-color: gray;
  border-radius: 20px;
}
.stu_log .stu_log_container .left .footer span {
  width: 100%;
  text-align: center;
  color: gray;
  font-weight: 600;
}
.stu_log .stu_log_container .left .icons {
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 5%;
}
.stu_log .stu_log_container .left .icons img {
  height: 100%;
  width: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .stu_log .stu_log_container {
    width: 100%;
    height: 90%;
  }
  .stu_log .stu_log_container .right {
    display: none;
  }
  .stu_log .stu_log_container .left {
    justify-content: center;
    width: 95%;
  }
  .stu_log .stu_log_container .left form {
    padding: 0;
  }
}
* {
  margin: 0;
  padding: 0;
}/*# sourceMappingURL=style.css.map */