@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #10B981; 
    --primary-hover: #059669; 
    --bg-gradient-1: #ECFDF5;
    --bg-gradient-2: #D1FAE5;
    --text-main: #064E3B;
    --text-muted: #64748B;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.6);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background: linear-gradient(135deg, var(--bg-gradient-1), var(--bg-gradient-2));
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background animated blobs for modern aesthetic */
.blob {
    position: fixed;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: float 10s ease-in-out infinite;
    border-radius: 50%;
}

.blob-1 {
    width: 450px;
    height: 450px;
    background: #34D399;
    top: -150px;
    left: -150px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: #6EE7B7;
    bottom: -100px;
    right: -100px;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    box-shadow: 0 25px 50px -12px rgba(5, 150, 105, 0.15);
    padding: 3rem;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-control-custom {
    background: rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(16, 185, 129, 0.15);
    border-radius: 18px;
    padding: 16px 20px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-control-custom:focus {
    background: #FFFFFF;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
    outline: none;
    transform: translateY(-2px);
}

.form-control-custom::placeholder {
    color: #94A3B8;
    font-weight: 400;
}

.btn-primary-custom {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 18px;
    padding: 18px 24px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
}

.btn-primary-custom:hover {
    background: var(--primary-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 25px -5px rgba(16, 185, 129, 0.5);
    color: white;
}

.btn-primary-custom:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px -2px rgba(16, 185, 129, 0.4);
}

.form-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 10px;
    margin-left: 6px;
    letter-spacing: 0.3px;
}

/* Result Page Elements */
.data-table-wrapper {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.9);
}

.status-box {
    border-radius: 24px;
    padding: 35px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: popIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.status-lulus {
    background: linear-gradient(135deg, #10B981, #047857);
    color: white;
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.5);
}

.status-tangguh {
    background: linear-gradient(135deg, #EF4444, #B91C1C);
    color: white;
    box-shadow: 0 20px 40px -10px rgba(239, 68, 68, 0.5);
}

/* Badge Styles untuk Admin */
.status-badge {
    padding: 8px 16px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.badge-lulus { background-color: #D1FAE5; color: #065F46; }
.badge-tangguh { background-color: #FEE2E2; color: #991B1B; }
