@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Open Sans', sans-serif;
}

body {
  height: 100vh;
  background-color: #f3f4f6;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
}

.container h1 {
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  color: #111827;
  margin-bottom: 30px;
  border-bottom: 3px solid #04AA6D;
  padding-bottom: 10px;
}

.container label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #374151;
}

.container form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 20px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background-color: #f9fafb;
  font-size: 15px;
  color: #111827;
  transition: border-color 0.3s ease;
}

.container form input:focus {
  border-color: #04AA6D;
  outline: none;
  background-color: #ffffff;
}

.container form button {
  width: 100%;
  height: 44px;
  background-color: #04AA6D;
  font-size: 16px;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.1s ease;
}

.container form button:hover {
  background-color: #038c5a;
}

.container form button:active {
  transform: scale(0.98);
}

p {
  color: #4b5563;
  padding-top: 10px;
  font-size: 14px;
  text-align: center;
}

a {
  color: #04AA6D;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* Animasi masuk dari bawah */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Terapkan animasi saat halaman dimuat */
.container {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 0.2s;
}

