/* ============================================================================
   NOT REGISTERED (Unauthenticated Catalog) PAGE - SPECIFIC STYLES  
   ============================================================================ */

body {
    background: #f4f6f8;
}

/* HEADER */

.header {
    background: var(--white);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.container_header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 248px;
}

.logo-icon {
    font-size: 28px;
}

.title_header {
    font-weight: var(--fw-semibold);
    font-size: 24px;
}

.subtitle_header {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.btn_header {
    color: var(--white);
    text-align: center;
    font-size: var(--font-size-sm);
    font-weight: var(--fw-regular);
    line-height: 1.5;
    display: flex;
    padding: 10px 12px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: var(--radius-sm);
    background: var(--text);
    margin: 0 248px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}


/*MAIN*/

.title_main {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text);
}

.subtitle_main {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.search-box {
    margin-bottom: 20px;
}

.search-box input {
    width: 100%;
    max-width: 500px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    outline: none;
    font-size: var(--font-size-base);
    color: var(--text);
    transition: var(--transition-fast);
    font-family: var(--font-sans);
}

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21, 93, 252, 0.1);
}

.stats {
    margin-bottom: 30px;
    color: var(--text-muted);
}

.container {
    width: 1280px;
    margin: 40px auto;
    text-align: center;
}