* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Roboto", sans-serif;
  position: relative;
}

.section-video {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container-video {
  max-width: 400px;
}

.video-bg {
  width: 100%;
  object-fit: fill;
}

.container-video .image {
  width: 100%;
  object-fit: cover;
}

.video-additional {
  background-color: #000;
  padding: 16px 10px;
  margin-top: -4px;
}

.video-description {
  margin-bottom: 24px;
}

.desc-menu {
  list-style: none;
  display: flex;
}

li.active {
  color: #9b9898;
}

.desc-item {
  color: #fff;
  margin-right: 10px;
  font-size: 16px;
}

.video-btn {
  width: 100%;
  margin-top: 32px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-get-more {
  border: none;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #23a8eb;
  padding: 12px 64px;
  border-radius: 24px;
  font-size: 24px;
}

.video-span {
  color: #9b9898;
  text-align: center;
}

.modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 300;
  display: none;
}

.modal-dialog {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: rgba(255, 255, 255, 0.5);
  max-width: 400px;
  padding: 32px 0;
  margin: 16px auto;
  border-radius: 16px;
}

.page-login {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.page-back {
  margin-bottom: 16px;
}

.page-back img {
  width: 16px;
}

.page-header {
  text-align: center;
  margin-bottom: 32px;
}

.page-header a {
  text-decoration: none;
  color: #2f2f30;
  font-weight: 500;
  font-size: 18px;
}

.page-icon {
  margin-bottom: 32px;
  text-align: center;
}
.page-icon img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
}

.form-group {
  position: relative;
  width: 310px;
  padding: 20px 10px 10px 10px;
  border: 1px solid #adadad;
  background-color: #fff;
  border-radius: 16px;
  margin-bottom: 16px;
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  transition: 0.5s;
  font-size: 16px;
  color: #adadad;
  pointer-events: none;
  transition: 0.5s;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label {
  top: 20px;
  font-size: 12px;
}

.form-group input {
  width: 100%;
  height: 32px;
  background: transparent;
  border: none;
  outline: none;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  padding: 0 35px 0 0;
}

.form-icon {
  position: absolute;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  cursor: pointer;
}

.form-icon img {
  display: none;
}

.btn-login {
  width: 310px;
  background-color: #23a8eb;
  border-radius: 42px;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 12px 10px;
  color: #fff;
  margin-bottom: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center; /* semua isi tetap rata tengah */
  gap: 8px; /* beri jarak antar elemen */
}

.btn-login:hover {
  background-color: #05a3f1;
}

.btn-spinner,
.btn-loading {
  display: none; /* default sembunyi */
}

.btn-spinner.show,
.btn-loading.show {
  display: inline-block;
}

.forgot-pass {
  width: 310px;
  padding: 8px;
  text-align: center;
  margin-bottom: 40px;
}

.forgot-pass a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.page-create {
  padding: 16px 0;
}

.page-create a {
  display: inline-block;
  text-decoration: none;
  color: #23a8eb;
  border: 1px solid #23a8eb;
  border-radius: 16px;
  width: 310px;
  padding: 16px 0;
  text-align: center;
  font-size: 16px;
}

.page-meta {
  width: 100%;
  text-align: center;
}

.page-meta img {
  transform: translateY(5px);
}

.text-meta {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

footer {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #eaeaea;
}

.loader {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

.hidden {
  visibility: hidden;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.disabled-inputs {
  pointer-events: none; /* tidak bisa diklik */
  opacity: 0.6; /* efek visual */
}
