

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #18181b;
    color: #e2e8f0;
    margin: 0;
    padding: 0;
}
.verify-bg {
    min-height: 100vh;
    background: #18181b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
}
.verify-header {
    text-align: center;
    margin-bottom: 32px;
}
.verify-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 8px;
}
.verify-header p {
    color: #a1a1aa;
    font-size: 1.1rem;
}
.panel, .verify-form-container, .verify-result-container {
    width: 100%;
    max-width: 700px;
    background: rgba(255,255,255,0.04);
    border-radius: 18px;
    box-shadow: 0 0 60px 10px rgba(168,85,247,0.12);
    padding: 32px 32px 24px 32px;
    margin-bottom: 32px;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}
.verify-label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
    color: #e2e8f0;
    margin-left: 4px;
}
.form-input {
    background-color: #18181b;
    border: 1.5px solid #a1a1aa;
    color: #e2e8f0;
    font-size: 1.15rem;
    padding: 1.1rem 1.2rem;
    border-radius: 8px;
    transition: border 0.2s, box-shadow 0.2s;
    margin-bottom: 0.5rem;
    box-sizing: border-box;
    display: block;
}
.form-input::placeholder {
    color: #a1a1aa;
    opacity: 1;
}
.form-input:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 0 2px rgba(168,85,247,0.3);
}
    box-shadow: 0 0 0 2px rgba(168,85,247,0.2);
}
.verify-btn {
    width: 100%;
    background: #a855f7;
    color: #fff;
    border: none;
    padding: 16px 0;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    margin-top: 8px;
    box-sizing: border-box;
    display: block;
}
.verify-btn:hover {
    background: #9333ea;
    box-shadow: 0 0 20px rgba(168,85,247,0.3);
    transform: scale(1.03);
}
.verify-result {
    font-size: 1.1rem;
    text-align: center;
    font-weight: 500;
}
.verify-nodata {
    text-align: center;
    color: #a1a1aa;
    font-size: 1.1rem;
    font-weight: 500;
}
.admin-login {
    position: fixed;
    right: 32px;
    bottom: 32px;
    background: #a855f7;
    border: 1.5px solid #a855f7;
    color: #fff;
    border-radius: 24px;
    padding: 10px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(168,85,247,0.12);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    z-index: 10;
}
.admin-login:hover {
    background: #9333ea;
    color: #fff;
    transform: scale(1.05);
}
/* Tabel modern */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    background: transparent;
}
th, td {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: left;
}
th {
    cursor: pointer;
    background: rgba(168,85,247,0.08);
    color: #e2e8f0;
    font-weight: 600;
}
tr:hover {
    background: rgba(168,85,247,0.07);
}
.pagination {
    margin-top: 16px;
    text-align: right;
}
.pagination button {
    background: #a855f7;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 16px;
    margin: 0 2px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
}
.pagination button.active {
    background: #9333ea;
    transform: scale(1.08);
}
/* Glass effect for card/panel */
.glass-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
}