@charset "UTF-8";

.authentication-wrapper {
  display: flex;
  flex-basis: 100%;
  min-height: 100vh;
  width: 100%;
}

.authentication-wrapper .authentication-inner {
  width: 100%;
}

.authentication-wrapper.authentication-basic {
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.authentication-wrapper.authentication-cover {
  align-items: flex-start;
}

.authentication-wrapper.authentication-cover .authentication-inner {
  height: 100vh;
}

.authentication-wrapper.authentication-basic .authentication-inner {
  max-width: 400px;
  position: relative;
}

.authentication-wrapper.authentication-basic .authentication-inner:before {
  width: 148px;
  height: 148px;
  content: " ";
  position: absolute;
  top: 380px;
  right: -50px;
  rotate: 180deg;
  background-image: url("../../../img/illustrations/bottom-shape.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.authentication-wrapper.authentication-basic .authentication-inner:after {
  width: 100vh;
  height: 230px;
  content: " ";
  position: absolute;
  bottom: 320px;
  left: -40px;
  background-repeat: no-repeat;
}

.authentication-wrapper.authentication-basic .authentication-inner .card {
  z-index: 1;
}

.authentication-wrapper.authentication-basic .authentication-inner .card .app-brand {
  margin-bottom: 2.5rem;
}

.authentication-wrapper .auth-input-wrapper .auth-input {
  max-width: 50px;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  font-size: 150%;
}

@media (max-width: 575.98px) {
  .authentication-wrapper .auth-input-wrapper .auth-input {
    font-size: 1.125rem;
  }
}

.light-style .authentication-wrapper .authentication-bg {
  background-color: #fff;
}

.light-style .authentication-wrapper.authentication-basic .authentication-inner:after {
  background-image: url("../../../img/illustrations/top-shape.svg");
}


.col-md-5 hr {
  border: none;
  /* Menghapus border default jika tidak diperlukan */
  border-top: 1px solid #adb5bd;
  /* Tambahkan garis horizontal */
  margin: 0;
  /* Menghapus margin agar lebih rapi */
}

.col-md-2 {
  text-align: center;
  /* Memastikan teks "or" berada di tengah */
}

.sosial-media:hover {
  cursor: pointer;
}

@media (max-width: 768px) {
  .authentication-wrapper.authentication-basic .authentication-inner:before {
    display: none;
    /* Menyembunyikan elemen di layar kecil */
  }

  .authentication-wrapper.authentication-basic .authentication-inner:after {
    display: none;
  }

  .sosial-media {
    padding: 10px;
    /* Atur sesuai kebutuhan */
  }
  .sm-text{
    font-size: 14px;
  }
}