@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  /*========== Colors ==========*/
  /* Change favorite color to match images */
  /*Green dark 190 - Green 171 - Grren Blue 200*/
  --hue-color: 200;

  --body-color: #fff;
  --color-biru-muda2: #e4ebf5;
  --color-biru-muda: #e8f0fe;
  --color-navmobile: #1f3548;
  --section-color: #f5f9fc;
  --box-active-color: #f5f9fc;
  --color-penulis: hsl(177, 15%, 50%);
  --color-penulis-hover: hsl(180, 30%, 40%);
  --nav-color: #fff;
  --border-color: #eee;
  --border-color-sidebar: #e7e7ec;
  --color-title-text: #0fb4ae;
  --border-color-center: #b7e4e2;
  --top-bar-color: #eee;
  --navbar-active-color: #428bca;
  --navbar-active-color-bottom: #006597;
  --navbar-dark-search-color: #428bca;
  --navbar-dark-search-color-hover: #8ab3d6;
  --side-nav: #010718;
  --text-color: #333;
  --text-color-galeri-bsr: #eee;
  --text-color-galeri-bsr-desc: #ccc;
  --text-color-description: #8bc7c5;
  --text-color-description-2: #333;
  --text-color-sider: #ffffff;
  --search-bar: #fff;
  --search-text: #010718;
  --color-acordion: #0fb4ae;
  --color-acordion-2: #ecf0f3;
  --title-color: #329996;
  --hovera-box: #0fb4ae;
  --suscribe-color: #0fb4ae;
  --suscribe-color-btn: #fff;
  --color-box: #0fb4ae;
  --color-box-galeri: #f5f9fc;
  --color-box-galeribsr: rgba(6, 8, 34, 0.9);
  --color-cshadow-galeri: rgba(214, 215, 216, 0.6);
  --color-btn: #0fb4ae;
  --color-btn-hover: #0c8f8a;
  --color-hover-pengu: #edfaf9;
  --button-hover: #0fb4ae;
  --button-hover-galeri: rgba(255, 255, 255, 0.2);
  --color-box-layanan: rgb(250, 250, 250);
  --color-border-btn: #b7e4e2;
  --color-swiper-layanan: #e1edf7;
  --color-swiperhover-layanan: #d2dde6;
  --color-bx-shadow-layanan: rgba(214, 215, 216, 0.6);
  --color-sidebar: #f9fafd;
  --color-dokumen-type: #e4f5f5;
  --color-dokumen-type-hover: #e5e9ec;
  --color-bx-shadow-program: rgba(68, 88, 144, 0.12);
  --color-h2-before: #cfb600;
  --color-hoverkuning-program: #cfb600;
  --color-hoverbiru-program: hsl(228, 57%, 38%);
  --title-color-second: hsl(228, 57%, 38%);
  --second-color: hsl(25, 83%, 53%);
  --color-fokus: #0fb4ae;
  --color-chevron: brightness(0) invert(0);
  --footer-atas: #115c5b;
  --footer-bawah: #084947;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "sans-serif";
}

.btn-primary {
  border: var(--title-color) !important;
  background-color: var(--title-color) !important;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.container {
  position: relative;
  margin: 15px;
  max-width: 430px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.container .forms {
  display: flex;
  align-items: center;
  height: 320px;
  width: 200%;
  /* background-color: red; */
  transition: height 0.2s ease;
}

.container .form {
  width: 50%;
  padding: 30px;
  background-color: #fff;
  transition: margin-left 0.18s ease;
}

.container .form .title {
  position: relative;
  font-size: 27px;
  font-weight: 600;
}

.form .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 30px;
  background-color: var(--title-color);
  border-radius: 25px;
}

.form .input-field {
  position: relative;
  height: 50px;
  width: 100%;
  margin-top: 30px;
  /* background-color: red; */
}

.input-field input {
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 0 35px;
  border: none;
  outline: none;
  font-size: 16px;
  border-bottom: 2px solid #ccc;
  border-top: 2px solid transparent;
}

.input-field input:is(:focus, :valid) {
  border-bottom-color: var(--title-color);
}

.input-field i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 23px;
  /* transition: all 0.2s ease; */
}

.input-field input:is(:focus, :valid)~i {
  color: var(--title-color);
}

.input-field i.icon {
  left: 0;
}

.input-field i.showHidePw {
  right: 0;
  cursor: pointer;
  padding: 10px;
}

.form .checkbox-text {
  /* background-color: red; */
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.checkbox-text .checkbox-content {
  display: flex;
  align-items: center;
}

.checkbox-content input {
  margin: 0 8px 1.5px 4px;
  accent-color: var(--title-color);
}

.form .text {
  color: #333;
  font-size: 14px;
}

.form a.text {
  text-decoration: none;
  color: var(--title-color);
}

.form a:hover {
  text-decoration: underline;
}

.form .button {
  margin-top: 35px;
}

.form .button input {
  border: none;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 6px;
  background-color: var(--title-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.button input:hover {
  background-color: var(--color-btn-hover);
}

.form .button-regis input {
  border: none;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 6px;
  background-color: var(--title-color);
  transition: all 0.3s ease;
  cursor: not-allowed;

}

.button-regis.active input:hover {
  background-color: #265df2;
  cursor: pointer;
}

.form .login-signup {
  margin-top: 30px;
  text-align: center
}