/*!
* PT. IMAJIKU CIPTA MEDIA
* Copyright 2019-2024 IMAJIKU.
*/

/* =BUTTON
------------------------------------------------------------ */
.btn-primary {
  background-color: #13818b !important;
  border-color: #13818b !important;
}
.btn-primary:hover {
  background-color: #104c51 !important;
  border-color: #104c51 !important;
}

/* =LOGIN
------------------------------------------------------------ */
.frontsite-auth-body {
  position: relative;
  background-color: #036e81;
  background: -webkit-linear-gradient(
    49deg,
    rgba(3, 110, 129, 1) 21%,
    rgba(0, 61, 86, 1) 67%,
    rgba(0, 61, 86, 1) 100%
  );
  background: -moz-linear-gradient(
    49deg,
    rgba(3, 110, 129, 1) 21%,
    rgba(0, 61, 86, 1) 67%,
    rgba(0, 61, 86, 1) 100%
  );
  background: linear-gradient(
    49deg,
    rgba(3, 110, 129, 1) 21%,
    rgba(0, 61, 86, 1) 67%,
    rgba(0, 61, 86, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#036E81", endColorstr="#003D56", GradientType=0);
}
.frontsite-auth-section {
  display: flex;
  width: 100vw;
  height: 100vh;
  position: relative;
  /* background-image: url("../assets/ornament.png"); */
  background-repeat: no-repeat;
  background-size: 40% auto;
  background-position: left bottom;
}
.frontsite-auth-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 900px;
  min-height: 500px;
  background-color: #47718c;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.auth-box-img {
  /* display: flex; */
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
}
.auth-box-img .img-cover {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  left: 0%;
  bottom: 0%;
  transform: translate(-5%, 0%);
}
.auth-box {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 400px;
  padding: 30px 20px 30px 40px;
  background-color: #ffffff;
  /* background-image: url("../assets/lanyard.jpg"); */
  background-repeat: repeat-y;
  background-size: contain;
  background-position: left top;
  border-radius: 0 30px 30px 0px;
  -webkit-border-radius: 0 30px 30px 0px;
  -moz-border-radius: 0 30px 30px 0px;
}
.auth-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
}
.auth-form form {
  width: 100%;
}
.auth-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.auth-header h1 {
  color: #073a50;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}
.auth-footer {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px;
}
.auth-footer p {
  font-size: 13px;
  line-height: 1.2;
  font-weight: normal;
  text-align: center;
  margin-bottom: 0;
}
