/* Bootstrap Reset - Ensures design system styles override Bootstrap */
/* This file adds specificity to override Bootstrap without !important */

/* Page and Form Containers */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.form-container {
    background-color: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

/* Button Reset - Override Bootstrap button styles */
button.btn,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 22px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: none;
}

button.btn-primary,
.btn-primary,
button.btn.btn-primary {
    background: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
    font-weight: 700;
}

button.btn-primary:hover,
.btn-primary:hover,
button.btn.btn-primary:hover,
button.btn-primary:focus,
.btn-primary:focus,
button.btn.btn-primary:focus {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

/* Login button specific */
button.btn.btn-primary.login-card-btn,
.btn.btn-primary.login-card-btn {
    width: 100%;
    padding: 13px 24px;
    font-size: 15px;
}

/* Icon sizing in buttons */
.btn svg,
.btn i,
button.btn svg,
button.btn i {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* Page header - Override any Bootstrap margins */
.page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    border-bottom: none;
    padding-bottom: 0;
}

.page-header h1 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.2;
}

.page-header p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
}
