body {
    background: #f8fafc;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.75rem;
    background: #4f46e5;
    padding: 0.7rem 1rem;
    font-weight: 700;
    color: #fff;
    transition: 0.2s ease;
}

.btn-primary:hover {
    background: #4338ca;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 0.7rem 1rem;
    font-weight: 700;
    color: #374151;
}

.input {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 0.72rem 0.9rem;
    color: #111827;
    outline: none;
}

.input:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.password-field {
    position: relative;
}

.password-field .input {
    padding-right: 3.25rem;
}

.password-toggle {
    position: absolute;
    right: 0.65rem;
    top: 50%;
    display: inline-flex;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    transform: translateY(-50%);
    transition: 0.2s ease;
}

.password-toggle:hover {
    background: #f1f5f9;
    color: #111827;
}

.label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.86rem;
    font-weight: 700;
    color: #374151;
}

.card {
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.table-th {
    padding: 0.85rem 1rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #6b7280;
    text-transform: uppercase;
}

.table-td {
    border-top: 1px solid #f1f5f9;
    padding: 1rem;
    color: #374151;
}
