/* Import Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Global CSS Variables */
:root {
    --bg: #f7f8fb;
    --card: #fff;
    --text: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --brand: #2563eb;
    --brand-700: #1d4ed8;
    --focus: 0 0 0 4px rgba(37, 99, 235, .15);
    --danger: 239, 68, 68;
    --success: #10b981;
    --info: 37, 99, 235;
}

/* Global Base Styles */
html,
body {
    height: 100%;
}

body {
    margin: 0;
    background: white;
    font-family: 'Inter', sans-serif;
}

/* Shared Footer Styles */
footer.page-footer {
    margin-top: 80px;
    padding-top: 24px;
    color: #6b7280;
    font-size: 12px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

footer.page-footer a {
    color: inherit;
    text-decoration: none;
}

footer.page-footer a:hover {
    text-decoration: underline;
}

/* Xero SSO Button */
.btn-xero-sso {
    width: 132px;
    height: 44px;
    border: 1px solid #13B5EA;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: .2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 auto;
}

.btn-xero-sso:hover {
    background: #f0faff;
    border-color: #0ea5e9;
}

.btn-xero-sso:active {
    transform: translateY(1px);
}

.btn-xero-sso svg {
    flex-shrink: 0;
}
