 html, body, form {
            height: 100%;
            width: 100%;
            padding: 0px;
            margin: 0px;
        }

        #siteBody {
            margin-top: 0px;
            margin-bottom: 0px;
            margin-left: auto;
            margin-right: auto;
            max-width: 1280px;
            padding: 0px;
            width: 100%;
            height: 100%;
            background-color: rgba(223, 221, 231, 0.39);
        }

#topBar {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 44px;
    background-color: rgba(255, 255, 255, 1);
    background-image: url(Lead/Application/img/mstile-144x144.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    border-bottom: 1px solid #585858;
}

        .logon {
            border: 1px solid rgba(0, 0, 0, 0.4);
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 1);
        }

/* --- Notion-style AD separator + button --- */
.login-separator {
    display: flex;
    align-items: center;
    margin: 18px 0 14px;
    gap: 12px;
    padding: 0 15%;
}

.login-separator::before,
.login-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.login-separator span {
    font-size: 12px;
    color: #9b9b9b;
    white-space: nowrap;
}

.login-provider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 44px;
    width: 35%;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #37352f;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.login-provider-btn:hover {
    background-color: #f7f7f7;
    border-color: #c0c0c0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.login-provider-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}