body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 600px;
    /* padding: 1%; */
}

.title-img {
    /* max-width: 500px; */
    margin-bottom: 8px;
    max-height: 50px;
    width: auto;
}

.form-control {
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.85rem;
}

#appDescriptionDisplay {
    font-size: 90%;
    margin-bottom: 8px !important;
    padding: 6px 10px !important;
}

.language-wrapper {
    position: relative;
    z-index: 1000;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #7f8c8d;
    margin: 8px 0;
}

#loginTitle {

    margin-bottom: 5px !important;

}

#companyLogo {
    margin-bottom: 6px !important;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}

.divider:not(:empty)::before {
    margin-right: .5em;
}

.divider:not(:empty)::after {
    margin-left: .5em;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-box {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== Assist Categories Card ===== */
.assist-categories {
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
    border: 1px solid #d0d5f0;
    border-radius: 8px;
    padding: 4px 8px;
    margin-bottom: 8px;
    box-shadow: 0 1px 6px rgba(60, 70, 180, 0.08);
}

.assist-categories:hover {
    box-shadow: 0 2px 12px rgba(60, 70, 180, 0.14);
}

.assist-header {
    font-size: 0.72rem;
    color: #2c3e50;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.assist-header i {
    font-size: 0.8rem;
}

.assist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.assist-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.75);
    border-radius: 6px;
    padding: 3px 8px;
    transition: transform 0.15s, background 0.15s;
    cursor: default;
}

.assist-item:hover {
    background: #ffffff;
    transform: translateX(4px);
}

.assist-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.assist-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    line-height: 1.2;
}

.assist-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: #2c3e50;
    white-space: nowrap;
}

.assist-desc {
    font-size: 0.85rem;
    color: #6b7a8f;
}