@import url("/css/color.css");
@import url("/css/fonts.css");
@import url("/css/components/menus.css");

.text-weak {
    color: #6C757D;
    font-weight: 400;
    font-size: 14px;
}

.brand-image {
    text-align: center;
    width: 5rem;
}

.brand-image-login {
    text-align: center;
    width: 7rem;
}

.no-decoration {
    text-decoration: none !important;
    color: inherit !important;
}

:root {
    --primary-color: #0d6efd;
    --secondary-bg: #f8f9fa;
}

body {
    background-color: #fff;
}

.hero-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #eef2f8 100%);
    padding: 2rem 0.2rem 1rem 0.2rem;
    border-bottom: 1px solid #dee2e6;
}

.login-card {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: white;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.doc-list-item {
    transition: background-color 0.2s;
    cursor: pointer;
}

.doc-list-item:hover {
    background-color: #f8f9fa;
}

.nav-tabs .nav-link {
    color: #495057;
    font-weight: 500;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}