* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  height: 100vh;
  overflow: hidden;
  background: #2e8b7c;
}

/* Parallax Background */
.parallax-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.parallax-layer {
  position: absolute;
  width: 120%;
  height: 120%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="40" height="40"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="200" height="200" fill="url(%23dots)"/></svg>')
    repeat;
  animation: float 25s ease-in-out infinite;
}

.parallax-layer:nth-child(1) {
  animation-duration: 30s;
  opacity: 0.4;
}

.parallax-layer:nth-child(2) {
  animation-duration: 20s;
  animation-delay: -10s;
  opacity: 0.3;
}

.parallax-layer:nth-child(3) {
  animation-duration: 35s;
  animation-delay: -15s;
  opacity: 0.2;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(-10px, -15px);
  }
  50% {
    transform: translate(5px, -25px);
  }
  75% {
    transform: translate(-15px, -5px);
  }
}

/* Main Container */
.main-container {
  display: flex;
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 2;
}

/* Left Section - Logo */
.left-section {
  flex: 1.5;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
  padding-bottom: 500px;
}

.small-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  padding-top: 450px;
}

.small-logo {
  width: auto;
  height: 65px;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.logo-container img {
  width: 400px;
  height: auto;
}

.fade-in {
  opacity: 0;
  animation: fade-in 4s ease-in-out forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(2deg);
  }
  50% {
    transform: translateY(-5px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

.organization-title {
  font-size: 70px;
  font-weight: bold;
  color: #2e8b7c;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 4s;
}

.organization-subtitle {
  font-size: 15px;
  color: #2e8b7c;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.5;
  max-width: 400px;
  animation: fadeInUp 4s;
}

/* Right Section - Login Form */
.right-section {
  flex: 1;
  background: linear-gradient(135deg, #2e8b7c 0%, #20b2aa 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  position: relative;
}

.login-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-logo {
  text-align: center;
  margin-bottom: 10px;
}

.aceh-logo {
  width: 70px;
  height: 70px;
  background: center/contain no-repeat;
  animation: spin 60s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

.logo-BKPSDM {
  width: 70px;
  height: 70px;
  background: center/contain no-repeat;
  animation: fadeInAndRotate 5s ease-in-out forwards;
}

@keyframes single-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInAndRotate {
            0% {
                opacity: 0;
                transform: scale(0.8) rotate(-10deg);
            }
            60% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
            100% {
                opacity: 1;
                transform: scale(1) rotate(180deg);
            }
        }


@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.system-title {
  color: white;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.system-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.1;
}

.form-group {
  margin-bottom: 10px;
  position: relative;
}

.form-label {
  display: block;
  color: white;
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-input:focus {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.checkbox-group {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 5px;
  color: white;
}

.checkbox {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  accent-color: #ffffff;
}

.checkbox-label {
 font-size: 15px;
align-items: center;
justify-content: center;
padding-top: 3px;
margin-top: 3px;
}

.captcha-section {
  margin-bottom: 10px;
}

.captcha-section .form-label {
  text-align: center;
  margin-bottom: 5px;
}

.login-btn {
  width: 150px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #2e8b7c;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
  margin-bottom: 4px;
  margin-top: 20px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login-btn:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.login-btn:active {
  transform: translateY(-1px);
}

.footer-text {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  text-align: center;
}

/* Floating Elements */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  pointer-events: none;
  overflow: hidden;
  padding-top: 5px;
  padding-bottom: 5px;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatUpDown 6s ease-in-out infinite;
}

.shape:nth-child(1) {
  width: 20px;
  height: 20px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 15px;
  height: 15px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape:nth-child(3) {
  width: 25px;
  height: 25px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-30px);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 700px) {
  .main-container {
    flex-direction: column;
  }

  .left-section {
    flex: none;
    height: 40vh;
    padding: 20px;
    padding-bottom: 20px;
  }

  .logo-container img {
    width: 120px;
  }

  .organization-title {
    font-size: 32px;
  }

  .organization-subtitle {
    font-size: 16px;
  }

  .right-section {
    flex: 1;
    padding: 20px;
  }

  .login-container {
    padding: 30px 20px;
  }

  .system-title {
    font-size: 28px;
  }
}
