@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --color-primary: #004680;
}

body,
html,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins";
}

.bg-depan {
  background-image: url("../img/depanummanado.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: repeat-y;
  min-height: 100vh !important;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  backdrop-filter: brightness(0.25);
}

/* Begin:: Login Page */
.login-section {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  min-height: 100vh;
  padding: 5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.login-left {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  align-items: start;
  padding: 10px 110px;
}

.login-left-top {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
  height: 70vh;
}

.login-left img.logo {
  width: 95px;
  height: 95px;
}

.login-left img.mobileApps {
  width: 135px;
  height: 40px;
}

.login-left h1 {
  font-weight: bold;
  color: #fff;
}

.login-left p {
  color: #fff;
}

.login-left p a {
  color: var(--color-primary);
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 15px;
  text-decoration: none;
}

.login-left h4:nth-child(3) {
  font-weight: bold;
}

.login-right {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 70px 50px;
  border-radius: 15px;
  height: -webkit-fill-available;
  background-image: url('../img/university2.png');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}

.login-right .info-login {
  width: -webkit-fill-available;
  margin: 15% 10% 2% 10%;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.login-right .info-login.hide {
  opacity: 0;
  max-height: 300px;
  transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
}

.login-right .info-login.hidden-final{
  display: none !important;
}

.login-right .divider-or {
  color: #a0a0a0;
  margin: 10px 0px;
  width: -webkit-fill-available;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}

.login-right .divider-or hr {
  width: 30%;
}

.login-right .btn-lupasandi {
  background-color: #f1f1f4;
  width: -webkit-fill-available;
}

.login-right .btn-lupasandi:hover {
  background-color: #dbdfe9;
  color: #004680;
}

#formLogin {
  display: flex;
  flex-direction: column;

  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  transition: opacity 0.5s ease-in-out, max-height 0.8s ease-in-out,
    padding 0.8s ease-in-out;
  transform: translateY(-20px);
}
#formLogin.show {
  opacity: 1;
  max-height: 800px;
  padding-top: 15px;
  padding-bottom: 15px;
  transform: translateY(0);
}

.login-right .login-form {
  margin-bottom: 10px;
}

.login-right .login-form label {
  font-size: 14px;
  font-weight: bold;
}

.login-right .login-form .form-control {
  border-bottom: 1px solid #dddddd !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
}

.login-right .login-form .form-control:focus {
  border-bottom: 1px solid var(--color-primary) !important;
  box-shadow: none !important;
}

.login-right .login-form a {
  font-size: 14px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: bold;
}

.login-right #togglePassword {
  position: absolute;
  right: 15px;
  top: 28px;
  cursor: pointer;
  z-index: 2;
}

.login-right .btn-login {
  width: 100%;
  background-color: #0067bd;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.login-right .btn-login:hover {
  width: 100%;
  background-color: #004680;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-login img {
  width: 1.5rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .login-section {
    width: 90%;
    height: auto;
    flex-direction: column !important;
    min-height: 600px;
  }

  .login-left,
  .login-right {
    width: 100% !important;
    min-height: 250px;
    padding: 30px 20px;
  }

  .login-left img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 767.98px) {
  .bg-depan {
    height: auto;
    min-height: 100vh;
  }

  .login-section {
    width: 100%;
    min-height: unset;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
  }

  .login-left,
  .login-right {
    padding: 20px 10px;
    min-height: unset;
  }

  .login-left img {
    width: 90px;
    height: 90px;
  }

  .login-right .btn-googleLogin {
    width: 100%;
  }

  .login-right #togglePassword {
    right: 10px;
    top: 28px;
  }
}

@media (max-width: 575.98px) {
  .login-section {
    padding: 0;
    border: none;
  }

  .login-left {
    padding: 30px 15px;
    border-radius: 15px 15px 0px 0px;
  }

  .login-right {
    padding: 30px 15px;
    border-radius: 0px 0px 15px 15px;
  }

  .login-left img {
    width: 70px;
    height: 70px;
  }
}

/* End:: Login Page */

/* Begin:: Dashboard Page */
.bg-depan.dashboard {
  padding: 20px 0px;
}

.dashboard-section {
  width: 70%;
  border-radius: 35px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.3);
  padding: 20px;
}

.dashboard-top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  background-image: url("../img/pat_04.png");
  background-color: var(--color-primary);
  border-radius: 15px 15px 0px 0px;
  padding: 32px;
}

.dashboard-top .left {
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
}

.dashboard-top .right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  gap: 30px;
}

.dashboard-top .right .btn-dashboard {
  color: #fff;
  background: rgb(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px !important;
  border-radius: 6px;
  margin-left: 8px;
  padding: 11px 15px;
  text-align: center;
  gap: 10px;
}

.dashboard-top .right .btn-dashboard:hover {
  color: #fff;
  background: rgb(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px !important;
  border-radius: 6px;
  margin-left: 8px;
  padding: 11px 15px;
  text-align: center;
  gap: 10px;
}

.dashboard-top .img-logo {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 26px;
  width: 80px;
  height: 80px;
}

.dashboard-top img {
  max-width: 80% !important;
  max-height: 80% !important;
  width: auto;
  height: auto;
  border-radius: 10px;
}

.dashboard-top h2,
h3 {
  color: #fff;
  font-size: 16px;
}

.dashboard-top h2,
h3:nth-child(3) {
  font-weight: bold;
}

.dashboard-bottom {
  background-color: #fff;
  display: flex;
  border-radius: 0px 0px 12px 12px;
  height: inherit;
}

.dashboard-bottom h2 {
  font-size: 20px;
  font-weight: bold;
}

.dashboard-bottom .left {
  padding: 20px;
}

.dashboard-bottom .left .inner-main {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 0.2s;
  border-radius: 15px;
  width: 30%;
  border: none;
}

.dashboard-bottom .left .inner-main:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #dfe4ea;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transform: scale(1.08) rotate(-5deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-bottom .left .inner-main p {
  font-size: 13px;
}

.dashboard-bottom .container {
  gap: 20px;
}

.dashboard-bottom .container-img {
  width: 30%;
  padding: 20px 0px;
}

.dashboard-bottom img {
  width: -webkit-fill-available;
  height: auto;
}

/* Responsive Dashboard Page */
@media (max-width: 991.98px) {
  .dashboard-section {
    width: 90%;
    padding: 10px;
  }

  .dashboard-top {
    flex-direction: column !important;
    padding: 20px 10px;
    border-radius: 15px 15px 0 0;
  }

  .dashboard-top .left {
    width: 100% !important;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }

  .dashboard-top .right {
    width: 100% !important;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }

  .dashboard-top .img-logo {
    width: 60px;
    height: 60px;
  }

  .dashboard-bottom {
    flex-direction: column;
    padding: 10px;
    border-radius: 0 0 12px 12px;
  }

  .dashboard-bottom .left .inner-main {
    width: 60%;
    margin: 0 auto 15px auto;
  }

  .dashboard-bottom .container-img {
    width: 60%;
    padding: 20px 0px;
  }

  .dashboard-bottom img {
    width: -webkit-fill-available;
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .dashboard-section {
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }

  .dashboard-top {
    padding: 15px 5px;
    border-radius: 0;
  }

  .dashboard-top .img-logo {
    width: 45px;
    height: 45px;
  }

  .dashboard-bottom {
    padding: 5px;
    border-radius: 0 0 10px 10px;
  }

  .dashboard-bottom .left .inner-main {
    width: 90%;
    margin-bottom: 10px;
  }

  .dashboard-bottom .container {
    gap: 10px;
  }
}

@media (max-width: 575.98px) {
  .bg-depan.dashboard {
    padding: 0px 10px;
  }

  .dashboard-section {
    padding: 0;
    border: none;
    height: 90vh;
    background: none;
  }

  .dashboard-top {
    padding: 20px 2px;
    border-radius: 12px 12px 0px 0px;
  }

  .dashboard-top .img-logo {
    width: 95px;
    height: 95px;
  }

  .dashboard-top h2,
  h3 {
    color: #fff;
    font-size: 16px;
    text-align: center;
  }

  .dashboard-top h2,
  h3:nth-child(3) {
    font-weight: bold;
    text-align: center;
  }

  .dashboard-bottom {
    padding: 2px;
    border-radius: 0 0 8px 8px;
    height: auto;
  }

  .dashboard-bottom .left .inner-main {
    width: 45%;
    font-size: 13px;
    padding: 10px 5px;
  }

  .dashboard-bottom .container {
    gap: 5px;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-content: center !important;
    justify-content: center !important;
    align-items: center !important;
  }
}

/* End:: Dashboard Page */

/* Begin:: Profil Page */
.bg-depan.profil {
  padding: 20px 0px;
}

.profil-section {
  width: 70%;
  border-radius: 35px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.3);
  padding: 20px;
}

.profil-top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  background-image: url("../img/pat_04.png");
  background-color: var(--color-primary);
  border-radius: 15px 15px 0px 0px;
  padding: 32px;
}

.profil-top .left {
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
}

.profil-top .right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  gap: 30px;
}

.profil-top .right .btn-profil {
  color: #fff;
  background: rgb(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px !important;
  border-radius: 6px;
  margin-left: 8px;
  padding: 11px 15px;
  text-align: center;
  gap: 10px;
}

.profil-top .right .btn-profil:hover {
  color: #fff;
  background: rgb(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px !important;
  border-radius: 6px;
  margin-left: 8px;
  padding: 11px 15px;
  text-align: center;
  gap: 10px;
}

.profil-top .img-logo {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 26px;
  width: 80px;
  height: 80px;
}

.profil-top img {
  max-width: 80% !important;
  max-height: 80% !important;
  width: auto;
  height: auto;
  border-radius: 10px;
}

.profil-top h2,
h3 {
  color: #fff;
  font-size: 16px;
}

.profil-top h2,
h3:nth-child(3) {
  font-weight: bold;
}

.profil-bottom {
  background-color: #fff;
  display: flex;
  border-radius: 0px 0px 12px 12px;
  height: inherit;
}

.profil-bottom h2 {
  font-size: 20px;
  font-weight: bold;
}

.profil-bottom .left {
  padding: 20px;
  width: 60%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: center;
  align-items: flex-start;
}

.profil-bottom .left .email {
  width: 100%;
}

.profil-bottom .left .inner-main {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 0.2s;
  border-radius: 15px;
  width: 30%;
  border: none;
}

.profil-bottom .left .inner-main:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #dfe4ea;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 0.2s;
}

.profil-bottom .left .inner-main p {
  font-size: 13px;
}

.profil-bottom .container {
  gap: 20px;
}

.profil-bottom .container-img {
  width: 40%;
  padding: 20px 0px;
  border-radius: 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-top: 30px;
}

.profil-bottom img {
  width: -webkit-fill-available;
  height: auto;
}

.profil-bottom .right {
  padding: 20px;
  width: 40%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

/* Responsive Dashboard Page */
@media (max-width: 991.98px) {
  .profil-section {
    width: 90%;
    padding: 10px;
  }

  .profil-top {
    flex-direction: column !important;
    padding: 20px 10px;
    border-radius: 15px 15px 0 0;
  }

  .profil-top .left {
    width: 100% !important;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }

  .profil-top .right {
    width: 100% !important;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }

  .profil-top .img-logo {
    width: 60px;
    height: 60px;
  }

  .profil-bottom {
    flex-direction: column;
    padding: 10px;
    border-radius: 0 0 12px 12px;
  }

  .profil-bottom .left {
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
  }

  .profil-bottom .left .inner-main {
    width: 60%;
    margin: 0 auto 15px auto;
  }

  .profil-bottom .container-img {
    width: 60%;
    padding: 20px 0px;
  }

  .profil-bottom img {
    width: -webkit-fill-available;
    height: auto;
  }

  .profil-bottom .right {
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
  }
}

@media (max-width: 767.98px) {
  .profil-section {
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }

  .profil-top {
    padding: 15px 5px;
    border-radius: 0;
  }

  .profil-top .img-logo {
    width: 45px;
    height: 45px;
  }

  .profil-bottom {
    padding: 5px;
    border-radius: 0 0 10px 10px;
  }

  .profil-bottom .left .inner-main {
    width: 90%;
    margin-bottom: 10px;
  }

  .profil-bottom .container {
    gap: 10px;
  }
}

@media (max-width: 575.98px) {
  .bg-depan.profil {
    padding: 0px 10px;
  }

  .profil-section {
    padding: 0;
    border: none;
    height: 90vh;
    background: none;
  }

  .profil-top {
    padding: 20px 2px;
    border-radius: 12px 12px 0px 0px;
  }

  .profil-top .img-logo {
    width: 95px;
    height: 95px;
  }

  .profil-top h2,
  h3 {
    color: #fff;
    font-size: 16px;
    text-align: center;
  }

  .profil-top h2,
  h3:nth-child(3) {
    font-weight: bold;
    text-align: center;
  }

  .profil-bottom {
    padding: 2px;
    border-radius: 0 0 8px 8px;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }

  .profil-bottom .left .inner-main {
    width: 45%;
    font-size: 13px;
    padding: 10px 5px;
  }

  .profil-bottom .container {
    gap: 5px;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-content: center !important;
    justify-content: center !important;
    align-items: center !important;
  }
}

/* End:: Profil Page */

/* Begin:: 404 Page */
.bg-depan.error {
  padding: 20px 0px;
}

.error-section {
  width: 70%;
  border-radius: 35px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.3);
  padding: 20px;
}

.error-top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  background-image: url("../img/pat_04.png");
  background-color: var(--color-primary);
  border-radius: 15px 15px 0px 0px;
  padding: 32px;
}

.error-top .left {
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
}

.error-top .right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  gap: 30px;
}

.error-top .right .btn-error {
  color: #fff;
  background: rgb(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px !important;
  border-radius: 6px;
  margin-left: 8px;
  padding: 11px 15px;
  text-align: center;
  gap: 10px;
}

.error-top .right .btn-error:hover {
  color: #fff;
  background: rgb(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px !important;
  border-radius: 6px;
  margin-left: 8px;
  padding: 11px 15px;
  text-align: center;
  gap: 10px;
}

.error-top .img-logo {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 26px;
  width: 80px;
  height: 80px;
}

.error-top img {
  max-width: 80% !important;
  max-height: 80% !important;
  width: auto;
  height: auto;
  border-radius: 10px;
}

.error-top h2,
h3 {
  color: #fff;
  font-size: 16px;
}

.error-top h2,
h3:nth-child(3) {
  font-weight: bold;
}

.error-bottom {
  background-color: #fff;
  display: flex;
  border-radius: 0px 0px 12px 12px;
  height: inherit;
}

.error-bottom h2 {
  font-size: 20px;
  font-weight: bold;
}

.error-bottom .left {
  padding: 20px;
  width: 60%;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: center;
  align-items: flex-start;
}
.error-img {
  width: 20%;
}
.error-img img {
  width: -webkit-fill-available;
}
/* End:: 404 Page */
