body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #f4f5f7 0%, #e9ebee 100%);
  color: #333;
}

.login-section h2 {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}


.login-header {
  background: #4b5a66;
  color: white;
  padding: 3rem;
  text-align: center;
}

.login-header h1 {
  margin: 0;
  font-size: 2rem;
}

.login-header p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.login-header p a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
    transition: 0.3s;
    z-index: 2;
}

.login-header p a:hover {
  opacity: 1;
  text-decoration: underline;
}

.login-header p a::after {
  display: none;
}

/* Section */
.login-section {
  text-align: center;
  padding: 6rem 1rem 4rem;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.login-subtitle {
  font-size: 0.9rem;
  font-weight: bold;
  color: teal;
  margin: 0.5rem 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.login-section h3 {
  margin: 1rem 0 2rem;
  font-size: small  ;
}
.login-section h1 {
  margin: 1rem 0 2rem;
  font-size: 1.6rem  ;
  text-align: left;
}

/* Form column */
/* Form Login Box */
.login-form {
  max-width: 500px;
  width: 100%;
  min-height: auto;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;

  /* Tambahan border & shadow */
  background: #fff;
  padding: 2.5rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  animation: fadeInUp 0.6s ease-in-out;
}

.login-form p{
  margin: 0;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.login-form input {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.2s ease-in-out;
}

.login-form input:focus {
  border-color: #00c3ff;
  box-shadow: 0 0 6px rgba(0,195,255,0.4);
  outline: none;
}


.login-form button,
.login-form .btn-register {
  display: block;
  width: 100%;
  padding: 0.7rem;
  border-radius: 5px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  font-weight: bold;
  text-align: center;

  /* tambahin ini biar ukuran konsisten */
  border: none;
  box-sizing: border-box;
}


/* Tombol login */
.login-form .btn-login {
  background: #00c3ff;
  border: none;
  color: white;
  margin-bottom: 1rem;
}

.login-form .btn-login:hover {
  background: #009bd6;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1rem 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ccc;
}

.divider span {
  padding: 0 10px;
  color: #666;
  font-size: 0.85rem;
}

/* Tombol Google */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  margin-bottom: 0;
}

.btn-google:hover {
  background: #f8f9fa;
  border-color: #999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: #333;
  text-decoration: none;
}

.btn-google svg {
  flex-shrink: 0;
}

/* Link Register */
.register-link {
  text-align: center;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 0.9rem;
}

.register-link a {
  color: #00c3ff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.register-link a:hover {
  color: #009bd6;
  text-decoration: underline;
}

/* Tombol register */
.login-form .btn-register {
  background: #4caf50;
  color: white;
  border: none;
}

.login-form .btn-register:hover {
  background: #3b9440;
}

.login-form ::after {
  display: none;
}


.btn-blue {
  padding: 10px 20px;
  border: 2px solid #00c3ff;
  color: #00c3ff !important;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
  position: relative;
  z-index: 2;
}

.btn-blue:hover {
  background: #00c3ff;
  color: white !important;
}

.btn-blue::after {
  display: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 2000; /* biar di atas nav */
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

/* Responsive nav */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 10px;
    padding: 1rem 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  /* margin-bottom: 1rem; */
}

.logo img {
  width: 8rem;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  animation: fadeInUp 0.6s ease-in-out;
}




footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

footer a{
  color: #ffffff !important;
  text-decoration: none;
}

/* === ANIMASI MASUK (EASE IN UP) === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





