/* Global layout */
body {
    background-color: #ffffff;
    color: #0f172a; /* slate-900 style */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Generic page container */
.b2b-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main content area */
.b2b-main {
    flex: 1;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

/* Auth & cards */
.b2b-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;   /* slate-200 */
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06); /* very soft shadow */
}

/* Muted + small text */
.b2b-muted {
    color: #6b7280; /* slate-500 */
    font-size: 0.75rem;
}

/* Primary button */
.b2b-btn-primary {
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 0.5rem;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.b2b-btn-primary:hover {
    background-color: #1d4ed8;
}

/* Secondary button */
.b2b-btn-outline {
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    background-color: #ffffff;
}

.b2b-btn-outline:hover {
    background-color: #f9fafb;
}

/* Inputs */
.b2b-input {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.b2b-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px #2563eb1a;
}
