 * { font-family: sans-serif; } body { margin: 0; background: #f5f5f5; } .loading-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: none; justify-content: center; align-items: center; z-index: 2000; } .loading-box { background: rgba(0,0,0,0.7); padding: 18px 35px; border-radius: 6px; min-width: 180px; min-height: 95px; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 1px solid rgba(255,255,255,0.15); } .logo-text { font-size: 10px; font-weight: 600; letter-spacing: 2px; color: rgba(255,255,255,0.95); margin-bottom: 10px; text-transform: uppercase; } .logo-text span { display: inline-block; opacity: 0; animation: fade-in 0.2s forwards; } .shiny-line { width: 130px; height: 1.5px; background: rgba(255,255,255,0.1); border-radius: 1px; margin: 8px 0; overflow: hidden; position: relative; } .shiny-line::after { content: ''; position: absolute; top: 0; left: -100%; width: 40%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), #667eea, #9464ff, rgba(255,255,255,0.9), transparent); animation: shiny-slide 1.8s infinite; } .loading-text { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.9); margin-top: 8px; margin-bottom: 10px; letter-spacing: 0.5px; display: flex; align-items: center; justify-content: center; height: 12px; } .dots-container { display: flex; align-items: flex-end; height: 12px; gap: 1px; } .dot { display: inline-block; font-size: 11px; line-height: 1; color: rgba(255,255,255,0.9); opacity: 0; animation: dot-fade 1.5s infinite; } .dot:nth-child(1) { animation-delay: 0s; } .dot:nth-child(2) { animation-delay: 0.2s; } .dot:nth-child(3) { animation-delay: 0.4s; } .loading-dots { display: flex; gap: 5px; margin-top: 5px; } .dot-item { width: 5px; height: 5px; border-radius: 50%; animation: dot-pulse 1.2s infinite; } .dot-item:nth-child(1) { animation-delay: 0s; background: #667eea; } .dot-item:nth-child(2) { animation-delay: 0.2s; background: #764ba2; } .dot-item:nth-child(3) { animation-delay: 0.4s; background: #60a5fa; } .processing-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(128,128,128,0.9); display: none; justify-content: center; align-items: center; z-index: 10000; flex-direction: column; } .processing-text { color: white; font-size: 16px; margin-top: 10px; } .processing-subtext { color: white; font-size: 12px; margin-top: 10px; } .header { background: #0f8f39; color: #fff; padding: 10px; display: flex; align-items: center; justify-content: space-between; } .header .left { display: flex; align-items: center; gap: 8px; } .header .left span { font-weight: bold; cursor: pointer; } .header .ver { font-size: 12px; text-align: right; } .container { padding: 15px; background: #fff; max-width: 500px; margin: 0 auto; min-height: calc(100vh - 120px); } .form-group { border: 1px solid #ccc; border-radius: 5px; margin-bottom: 12px; padding: 10px; } .row { display: flex; align-items: center; justify-content: space-between; } .row label { flex: 1; font-size: 14px; color: #555; } .row input, .row select { flex: 1; border: 1px solid #ddd; border-radius: 4px; padding: 8px; max-width: 55%; font-size: 14px; } .notes { background: #fff; padding: 10px; border-radius: 5px; margin-top: 20px; } .notes h4 { color: #0f8f39; margin-bottom: 6px; } .notes p { font-size: 14px; margin: 3px 0; } .btn-area { position: fixed; bottom: 0; left: 0; right: 0; padding: 10px; background: #eee; text-align: center; } .btn { background: #ccc; border: none; padding: 12px 0; width: 90%; max-width: 480px; border-radius: 5px; color: #fff; font-weight: bold; font-size: 16px; transition: .3s; cursor: pointer; } .btn.active { background: #0f8f39; } .success { display: none; padding: 15px; background: #fff; max-width: 500px; margin: 0 auto; min-height: calc(100vh - 120px); } .success .info-box { border: 1px solid #ccc; border-radius: 5px; margin-bottom: 12px; padding: 10px; background: #f9f9f9; } .success .info-item { display: flex; justify-content: space-between; margin-bottom: 5px; padding: 8px; border-radius: 5px; background: #fff; box-shadow: inset 0 0 3px rgba(0,0,0,0.1); } .success .info-item span:first-child { color: #555; font-weight: bold; } .success .info-item span:last-child { color: #333; } .ubah { display: block; width: 100%; max-width: 480px; margin: 15px auto; padding: 10px; border: 1px solid #0f8f39; color: #0f8f39; border-radius: 5px; background: #fff; font-weight: bold; cursor: pointer; font-size: 14px; } .main-content { display: block; } .processing *:not(.processing-overlay) { pointer-events: none !important; opacity: 0.7; } @keyframes fade-in { to { opacity: 1; } } @keyframes shiny-slide { 0% { left: -100%; opacity: 0; } 20%,80% { opacity: 1; } 100% { left: 100%; opacity: 0; } } @keyframes dot-fade { 0%,20% { opacity: 0; } 40%,60% { opacity: 1; } 80%,100% { opacity: 0; } } @keyframes dot-pulse { 0%,100% { transform: scale(0.8); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 1; } } 