html,
body{
	margin:0px;
	font-family: "__Roboto_1697ff","__Roboto_Fallback_1697ff",ui-sans-serif,system-ui,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
}
h1, h2, h3{
	
}
#app{

}
.home{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;	
}
.container{
  padding: 0 20px;
}
.header{
	display: block;
	width: 100%;
	margin-top:5px;
}
.main{
	display: flex;
	justify-content: center;
	align-items: center;
	
}
.main .container{
	background-color: #fff;
	width: 100%;
	max-width:500px;
	padding-bottom: 20px
}
.main input::-webkit-input-placeholder {
	font-style: italic;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.4);
}

.main input::-moz-placeholder {
	font-style: italic;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.4);
}

.main input::input-placeholder {
	font-style: italic;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.4);
}
.balance{
	font-size: 20px;
	text-align: center;
}
.footer{
	
}
.title{
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #221c82; /* Warna teks utama */
}
.subtitle{
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: #666; /* Warna teks tambahan */
}
.description{
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #666; /* Warna teks tambahan */
}
.illustration {
	margin-bottom: 2rem;
}
.highlights{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 2rem;
}
.highlight {
  flex: 1 1 300px;
  margin: 0 10px;
  padding: 20px;
  background-color: #ffffffd6; /* Warna latar belakang highlight */
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.highlight img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.highlight-text {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333; /* Warna teks highlight */
}

.highlight-description {
  font-size: 1rem;
  color: #666; /* Warna teks tambahan highlight */
}

.learn-more {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #666; /* Warna teks tambahan */
}

.btn-primary {
  display: inline-block;
  padding: 10px 20px;
  background-image: linear-gradient(90deg,#c766ef,#7928d2 51.04%,#2b0c52);
  background-color: #007bff; /* Warna latar belakang tombol */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-size: 1rem;
}

.btn-primary:hover {
  background-image: linear-gradient(90deg,#c766ef,#7928d2 51.04%,#2b0c52);
  background-color: #0056b3; /* Warna latar belakang tombol saat dihover */
}

/* CSS untuk Spinner (Loader) */
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #000;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-left: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* CSS untuk Notifikasi */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 5px;
  color: #fff;
  font-size: 1em;
  transition: opacity 0.3s;
}

.notification.success {
  background-color: #4caf50;
}

.notification.error {
  background-color: #f44336;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

@media (max-width: 768px) {
  .home {
    display: block;
	
  }
  .container{
    max-width:360px;
  }
  .title {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 1.3rem;
  }

  .description {
    font-size: 1rem;
  }

  .highlight {
    flex: 1 1 100%;
  }
}
