@font-face {
  font-family: new_font;
  src: url(../fonts/Ubuntu-Regular.ttf);
}

* {
  box-sizing: border-box;
}

body {
  background: #F6F5F7;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: new_font;
  height: 95vh;
  /* margin: -20px 0 50px; */
}

h1 {
  font-weight: bold;
  margin: 0;
}

h2 {
  text-align: center;
}

p {
  font-size: 14px;
  font-weight: 100;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 20px 0 30px;
}

a {
  color: #666;
  font-size: 14px;
  text-decoration: none;
  margin: 15px 0;
}

button {
  border-radius: 5px;
  border: 1px solid #5A6A4D;
  background-color: #77876a;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 12px 45px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
  cursor: pointer;
}

button:active {
  transform: scale(0.95);
}

button:focus {
  outline: none;
}

button.ghost {
  background-color: transparent;
  border-color: #ffffff;
}

button.fill {
  border-radius: 5px;
  border: 1px solid #5A6A4D;
  background-color: #77876a;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 12px 45px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 2px 6px -2px rgba(0, 0, 0, .16), 0 2px 6px 0 rgba(0, 0, 0, .12);
}

.minidis {
  display: none;
}

button.outline {
  border-radius: 5px;
  border: 1px solid #04b199;
  background-color: #fff;
  color: #04b199;
  font-size: 12px;
  font-weight: bold;
  padding: 12px 45px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
  cursor: pointer;
  width: 100%;
}

form {
  background-color: #dfdfdf;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 50px;
  height: 100%;
  text-align: center;
}

input {
  background-color: #eee;
  border: 2px solid #dce4ec;
  padding: 12px 15px;
  margin: 8px 0;
  width: 100%;
  border-radius: 5px;
}

input:focus {
  border: 2px solid #04b199;
}

.container {
  background-color: #FFF;
  /* border-radius: 10px; */
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  width: 1000px;
  max-width: 100%;
  min-height: 650px;
}

.form-container {
  position: absolute;
  top: 0;
  height: 100%;
  transition: all 0.6s ease-in-out;
}

.form-container h1 {
  margin-bottom: 40px;
}

.form-container a {
  font-size: 12px;
}

.form-container span {
  width: 100%;
}

.form-container a:hover {
  color: #04b199;
}

.remember {
  float: left;
  margin: 0 0 15px;
}

.forgot {
  /*float: right;*/
  margin: 0 0 15px;
}

.img-atas {
  position: absolute;
  left: 100px;
  right: 100px;
  top: 0;
  padding: 0px 0px 0;
}

.img-atas img {
  width: 75%;
  margin-top: 105px;
}

.img-bawah {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 50px 30px;
}

.img-bawah .kiri {
  width: 25%;
  float: left;
}

.img-bawah .tengah {
  width: 34%;
  float: none;
}

.img-bawah .kanan {
  width: 40%;
  float: right;
}

.login-container {
  left: 0;
  width: 50%;
  z-index: 2;
}

.container.geser-active .login-container {
  transform: translateX(100%);
}

.lacak-container {
  left: 0;
  width: 50%;
  opacity: 0;
  z-index: 1;
}

.container.geser-active .lacak-container {
  transform: translateX(100%);
  opacity: 1;
  z-index: 5;
  animation: show 0.6s;
}

@keyframes show {
  0%,
  49.99% {
    opacity: 0;
    z-index: 1;
  }

  50%,
  100% {
    opacity: 1;
    z-index: 5;
  }
}

.overlay-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.6s ease-in-out;
  z-index: 100;
}

.container.geser-active .overlay-container {
  transform: translateX(-100%);
}

.overlay {
  background: #5A6A4D;
  background: -webkit-linear-gradient(to right, #5A6A4D, #77876a);
  background: linear-gradient(to right, #5A6A4D, #77876a);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  color: #ffffff;
  position: relative;
  left: -100%;
  height: 100%;
  width: 200%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}

.container.geser-active .overlay {
  transform: translateX(50%);
}

.overlay-panel {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  top: 0;
  height: 100%;
  width: 50%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}

.overlay-left {
  transform: translateX(-20%);
}

.container.geser-active .overlay-left {
  transform: translateX(0);
}

.overlay-right {
  right: 0;
  transform: translateX(0);
}

.container.geser-active .overlay-right {
  transform: translateX(20%);
}

.fz-14 {
	display: block;
	font-size: 14px !important;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mt-8 {
  margin-top: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v76/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: 'liga';
  -moz-osx-font-smoothing: grayscale;
}
.showPassword {
    position: absolute;
    top: 47.5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    right: 60px;
}

.form-uppercase {
	text-transform: uppercase;
}

::placeholder {
  text-transform: none;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  text-transform: none;
}

::-ms-input-placeholder { /* Microsoft Edge */
  text-transform: none;
}

/*.social-container {
  margin: 20px 0;
}

.social-container a {
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  height: 40px;
  width: 40px;
}

footer {
    background-color: #222;
    color: #fff;
    font-size: 14px;
    bottom: 0;
    position: fixed;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999;
}

footer p {
    margin: 10px 0;
}

footer i {
    color: red;
}

footer a {
    color: #3c97bf;
    text-decoration: none;
}*/
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus,
textarea {
  font-size: inherit;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  /* smartphones, iPhone, portrait 480x320 phones */
  .container {
    max-width: 80%;
    top: -30px;
  }
  .login-container {
    width: 100%;
  }
  .overlay-container {
    display: none;
  }
  form {
    padding: 0 30px;
  }
  .img-atas {
    padding: 30px 30px 0;
  }
  .img-atas img {
    position: absolute;
    width: 200%;
    left: -48px;
  }
  .img-bawah {
    padding: 0 30px 30px;
  }
  .img-bawah .kiri {
    width: 43%;
  }
  .img-bawah .kanan {
    width: 43%;
  }
  .container.geser-active .lacak-container {
    transform: translateX(0);
    width: 100%;
  }
  .minidis {
    display: block;
  }
  .showPassword {
    top: 45.2%;
    right: 37px;
  }
  .fz-14 {
	display: none;
  }
}
@media only screen and (min-width: 481px) {
  /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
}
@media only screen and (min-width: 641px) {
  /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */
}
@media only screen and (min-width: 961px) {
  /* tablet, landscape iPad, lo-res laptops ands desktops */
}
@media only screen and (min-width: 1025px) {
  /* big landscape tablets, laptops, and desktops */
}
@media only screen and (min-width: 1281px) {
  /* hi-res laptops and desktops */
}














.vertical-timeline {
    width: 100%;
    position: relative;
    padding: 1.5rem 0 1rem;
}
.vertical-timeline::after {
    content: "";
    display: table;
    clear: both;
}
.vertical-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 67px;
    height: 100%;
    width: 4px;
    background: #e9ecef;
    border-radius: 0.25rem;
}
.vertical-timeline-element {
    position: relative;
    margin: 0 0 1rem;
}
.vertical-timeline-element:after {
    content: "";
    display: table;
    clear: both;
}
.vertical-timeline-element:last-child {
    margin-bottom: 0;
}
.vertical-timeline-element-content {
    position: relative;
    margin-left: 90px;
    font-size: 0.8rem;
}
.vertical-timeline-element-content:after {
    content: "";
    display: table;
    clear: both;
}
.vertical-timeline-element-content .timeline-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    padding: 2px 0 0;
    font-weight: bold;
}
.vertical-timeline-element-content p {
    color: #6c757d;
    margin: 0 0 0.5rem;
}
.vertical-timeline-element-content .vertical-timeline-element-date {
    display: block;
    position: absolute;
    left: -90px;
    top: 0;
    padding-right: 10px;
    text-align: right;
    color: #adb5bd;
    font-size: 0.7619rem;
    white-space: nowrap;
}
.vertical-timeline-element-icon {
    position: absolute;
    top: 0;
    left: 60px;
}
.vertical-timeline-element-icon .badge-dot-xl {
    box-shadow: 0 0 0 5px #fff;
}
.vertical-timeline-element--no-children .vertical-timeline-element-content {
    background: 0 0;
    box-shadow: none;
}
.vertical-timeline-element--no-children .vertical-timeline-element-content::before {
    display: none;
}
.vertical-without-time::before {
    left: 11px;
}
.vertical-without-time .vertical-timeline-element-content {
    margin-left: 36px;
}
.vertical-without-time .vertical-timeline-element-icon {
    left: 4px;
}
.vertical-time-icons {
    padding: 2rem 0 0;
}
.vertical-time-icons::before {
    content: "";
    position: absolute;
    top: 0;
    left: 14px;
    height: 100%;
    width: 6px;
    background: #e9ecef;
    border-radius: 0.25rem;
}
.vertical-time-icons .vertical-timeline-element {
    margin-bottom: 1rem;
}
.vertical-time-icons .vertical-timeline-element-content {
    margin-left: 50px;
}
.vertical-time-icons .vertical-timeline-element-icon {
    width: 34px;
    height: 34px;
    left: 0;
    top: -7px;
}
.vertical-time-icons .vertical-timeline-element-icon .timeline-icon {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50px;
    border-width: 2px;
    border-style: solid;
    box-shadow: 0 0 0 5px #fff;
    text-align: center;
    display: flex;
    align-items: center;
    align-content: center;
}
.vertical-time-icons .vertical-timeline-element-icon .timeline-icon i {
    display: block;
    font-size: 1.1rem;
    margin: 0 auto;
}
.vertical-time-icons .vertical-timeline-element-icon .timeline-icon svg {
    margin: 0 auto;
}
.vertical-time-simple {
    padding: 0.5rem 0;
}
.vertical-time-simple .vertical-timeline-element {
    margin: 0 0 0.5rem;
}
.vertical-time-simple .timeline-title {
    font-weight: normal;
    font-size: 0.91667rem;
    padding: 0;
}
.vertical-time-simple .vertical-timeline-element-icon {
    height: 14px;
    width: 14px;
    background: #e9ecef;
    position: absolute;
    left: 6px;
    top: 2px;
    display: block;
    border-radius: 20px;
}
.vertical-time-simple .vertical-timeline-element-icon::after {
    content: "";
    position: absolute;
    background: #fff;
    left: 50%;
    top: 50%;
    margin: -4px 0 0 -4px;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 20px;
}
.vertical-time-simple .timeline-title {
    text-transform: none;
}
.dot-primary .vertical-timeline-element-icon {
    background: #23BF08;
}
.dot-secondary .vertical-timeline-element-icon {
    background: #6c757d;
}
.dot-success .vertical-timeline-element-icon {
    background: #23BF08;
}
.dot-info .vertical-timeline-element-icon {
    background: #16aaff;
}
.dot-warning .vertical-timeline-element-icon {
    background: #f7b924;
}
.dot-danger .vertical-timeline-element-icon {
    background: #d92550;
}
.dot-light .vertical-timeline-element-icon {
    background: #eee;
}
.dot-dark .vertical-timeline-element-icon {
    background: #343a40;
}
.dot-focus .vertical-timeline-element-icon {
    background: #444054;
}
.dot-alternate .vertical-timeline-element-icon {
    background: #794c8a;
}
.vertical-timeline--animate .vertical-timeline-element-icon.is-hidden {
    visibility: hidden;
}
.vertical-timeline--animate .vertical-timeline-element-icon.bounce-in {
    visibility: visible;
    animation: cd-bounce-1 0.8s;
}
@-webkit-keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
    }
}
@-moz-keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -moz-transform: scale(0.5);
    }
    60% {
        opacity: 1;
        -moz-transform: scale(1.2);
    }
    100% {
        -moz-transform: scale(1);
    }
}
@keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}
.vertical-timeline--animate .vertical-timeline-element-content.is-hidden {
    visibility: hidden;
}
.vertical-timeline--animate .vertical-timeline-element-content.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2 0.6s;
    -moz-animation: cd-bounce-2 0.6s;
    animation: cd-bounce-2 0.6s;
}
@media only screen and (min-width: 1170px) {
    .vertical-timeline--two-columns.vertical-timeline--animate .vertical-timeline-element.vertical-timeline-element--right .vertical-timeline-element-content.bounce-in,
    .vertical-timeline--two-columns.vertical-timeline--animate .vertical-timeline-element:nth-child(even):not(.vertical-timeline-element--left) .vertical-timeline-element-content.bounce-in {
        -webkit-animation: cd-bounce-2-inverse 0.6s;
        -moz-animation: cd-bounce-2-inverse 0.6s;
        animation: cd-bounce-2-inverse 0.6s;
    }
}
@media only screen and (max-width: 1169px) {
    .vertical-timeline--animate .vertical-timeline-element-content.bounce-in {
        visibility: visible;
        -webkit-animation: cd-bounce-2-inverse 0.6s;
        -moz-animation: cd-bounce-2-inverse 0.6s;
        animation: cd-bounce-2-inverse 0.6s;
    }
}
@-webkit-keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(20px);
    }
    100% {
        -webkit-transform: translateX(0);
    }
}
@-moz-keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100px);
    }
    60% {
        opacity: 1;
        -moz-transform: translateX(20px);
    }
    100% {
        -moz-transform: translateX(0);
    }
}
@keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        -moz-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        -o-transform: translateX(-100px);
        transform: translateX(-100px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}
@-webkit-keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
    }
    100% {
        -webkit-transform: translateX(0);
    }
}
@-moz-keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -moz-transform: translateX(100px);
    }
    60% {
        opacity: 1;
        -moz-transform: translateX(-20px);
    }
    100% {
        -moz-transform: translateX(0);
    }
}
@keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
        -moz-transform: translateX(100px);
        -ms-transform: translateX(100px);
        -o-transform: translateX(100px);
        transform: translateX(100px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -moz-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        -o-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}
.was-validated .form-val:invalid ~ .invalid-feedback,
.was-validated .form-val:invalid ~ .invalid-tooltip,
.form-val.is-invalid ~ .invalid-feedback,
.form-val.is-invalid ~ .invalid-tooltip {
    display: block;
}
.form-val.is-invalid {
	border:2px solid #d92550;
}
.invalid-feedback {
	display: none;
	width: 100%;
	/*margin-top: 0.25rem;*/
	margin-top: -13px;
	text-align: left;
	font-size: 70%;
	color: #d92550;
}