body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #EDEDED;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
}

.container {
  width: 350px;
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo {
  display: block;
  margin: 0 auto 15px;
  width: 50px;
  height: auto;
}

.forgot-password {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  color: black;
  text-decoration: none;
  font-size: 0.9em;
}

.forgot-password:hover {
  text-decoration: underline;
}

.input-group {
  top: 180px;
  transition: 0.5s;
}

.input-field {
  width: 92%;
}

.checkbox-container {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #333;
  margin-bottom: 6px;
  gap: 4px;
}

.check-box {
  width: 16px;
  height: 16px;
  appearance: none;
  -webkit-appearance: none;
  background-color: white;
  border: 2px solid #888;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.check-box:checked::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 10px;
  border: solid black;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.check-box:checked {
  background-color: #e0f0ff;
  border-color: #116EFB;
}

.check-label {
  margin-left: 2px;
  margin-top: -12px;
  color: black;
}

.form-box {
  width: 350px;
  padding: 30px;
  box-sizing: border-box;
}

.form-box h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-box input {
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.btn {
  width: 100%;
  padding: 12px;
  background: #FEDEBE;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* Bayangan halus */
}

.btn:hover {
  background: #FE6E00;
  color: #fff;
}

.slider-buttons {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 0 0 20px 20px;
}

.slider-buttons button:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.slider-buttons button:last-child {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
}

.slider-buttons button {
  flex: 1;
  padding: 15px 0;
  border: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.slider-buttons button::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.3s ease;
  z-index: 0;
}

.slider-buttons button:hover::after {
  width: 100%;
}

.slider-buttons button.active {
  background: linear-gradient(45deg, #ffca7a, #fbc794);
  color: #000;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.slider-buttons button.inactive {
  background: #f0f0f0;
  color: #999;
}


.slider-buttons button.inactive:hover {
  filter: blur(0);
  opacity: 0.8;
  cursor: pointer;
}

.form-slider {
  display: flex;
  width: 700px;
  /* 2 forms * 350px */
  transition: transform 0.5s ease-in-out;
}