body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0e1a35;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.background-shape svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
}

.decor-circle-left {
    position: absolute;
    width: 150px;
    height: 150px;
    background: orange;
    border-radius: 50%;
    top: 40%;
    left: -60px;
    filter: blur(100px);
    z-index: -10;
}

.login-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 480px;
}

.form-box {
  border: 2px solid transparent;
  border-radius: 1rem;
  background-clip: padding-box;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
}

.form-box::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, #f97316, #facc15); /* oranye ke kuning */
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: inherit;
  z-index: -1;
}


.logo-pos {
    width: 120px;
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    align-items: center;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.input-group i {
    margin-right: 10px;
}

.input-group input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    width: 100%;
}

.login-btn {
    background: linear-gradient(135deg, #ff7e29, #ff9900);
    border: none;
    color: white;
    padding: 12px;
    width: 100%;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.login-btn:hover {
    background: linear-gradient(135deg, #ff9900, #ff7e29);
}

.forgot {
    display: inline-block;
    margin-top: 15px;
    color: #ffae42;
    font-size: 0.9em;
    text-decoration: none;
}

.forgot:hover {
    text-decoration: underline;
}

@keyframes fade-slide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-slide {
    animation: fade-slide 0.8s ease-out;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Efek kaca lebih terang */
.glass-effect {
    background: rgba(255, 255, 255, 0.15); /* lebih putih */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* shadow form login */
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Group input styling */
.input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.2); /* semi-putih */
    border: 1px solid black; /* border hitam */
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

/* Input text style */
.input-group input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    flex: 1;
    font-size: 1rem;
}

/* Optional: Warna teks placeholder biar kelihatan */
.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}


.logo-pos {
    width: 100px;
    display: block;
    margin: 0 auto;
}

.login-btn {
    font-size: 1rem;
    font-weight: 600;
    border: none;
}

.login-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}


