/*
 * BAC Alerts — brand overrides
 * Bootstrap 5 handles layout and components; this file applies BAC colours
 * and typography to match the-bac.edu.
 */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

body {
    font-family: 'Open Sans', Tahoma, Verdana, sans-serif;
    font-size: 15px;
    color: #39373a;
    background: #f5f5f5;
}

/* ---- Header ---- */
.bac-header {
    background: #39373a;
    padding: 14px 0;
    margin-bottom: 0;
}

.bac-logo {
    height: 60px;
    width: auto;
}

/* ---- Page title ---- */
.bac-page-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #39373a;
    margin-bottom: 1rem;
}

/* ---- Form card ---- */
.bac-form-card {
    border: 1px solid #d8d8d8;
    border-radius: 2px;
    background: #ffffff;
}

.bac-form-card .card-body {
    padding: 1.5rem;
}

/* ---- Form controls ---- */
.form-label {
    font-weight: 600;
    color: #39373a;
}

.form-control:focus,
.form-select:focus {
    border-color: #1c71c8;
    box-shadow: 0 0 0 0.2rem rgba(28, 113, 200, 0.2);
}

/* ---- Primary button — BAC dark ---- */
.bac-btn-primary {
    background-color: #39373a;
    border-color: #39373a;
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem 1.4rem;
    border-radius: 2px;
}

.bac-btn-primary:hover,
.bac-btn-primary:focus {
    background-color: #1c71c8;
    border-color: #1c71c8;
    color: #ffffff;
}

.bac-btn-primary:disabled {
    background-color: #888;
    border-color: #888;
}

/* ---- Links ---- */
a {
    color: #1c71c8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ---- Policy text ---- */
.bac-policy {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.65;
}

.bac-policy h2 {
    color: #39373a;
    margin-top: 1rem;
}

/* ---- Alerts (Bootstrap override) ---- */
.alert {
    border-radius: 2px;
}

.alert-danger {
    background: #fff0f0;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-success {
    background: #f0fff4;
    border-color: #c3e6cb;
    color: #155724;
}
