/* login.css - page specific styling */

.login-card {
    width: 100%;
    max-width: 520px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px 16px 16px 16px;
}

.login-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 150px;
    /*height: 44px; 
    border-radius: 10px; 
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10); */
    object-fit: cover;
}

.brand-title {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.tenant-brand {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 10px 10px;
}

.tenant-brand-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.tenant-logo {
    max-height: 56px;
    max-width: 240px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.tenant-message {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.45;
}

.tenant-message p {
    margin: 0 0 0.7rem 0;
}

.tenant-message p:last-child {
    margin-bottom: 0;
}

.login-step {
    padding-top: 4px;
}
