:root {
    --tb-navy: #0a406b;
    --tb-blue: #12458c;
    --tb-gold: #e1b852;

    --bs-body-bg: var(--tb-navy);
    --bs-primary: var(--tb-navy);
    --bs-primary-rgb: 10, 64, 107;
}

body {
    color: var(--bs-body-color);
}

.tb-maxw-750 {
    max-width: 750px;
}

.tb-minw-128 {
    min-width: 128px;
}

.bg-white {
    background: #fff !important;
    color: #212529;
}

.fs-xs {
    font-size: 0.75rem;
}

/* Custom Input Styles */

.form-control,
.form-select,
textarea.form-control {
    background-color: #fff !important;
    border: 1px solid #d7dee8;
    border-radius: 7px;
    padding: .75rem .9rem;
}

.form-check-input {
    background-color: #fff;
}

textarea.form-control {
    min-height: 94px;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
    border-color: rgba(11, 63, 122, .65);
    box-shadow: 0 0 0 .25rem rgba(11, 63, 122, .12);
}

.form-control::placeholder {
    color: #6c757d;
    opacity: .5;
}

select.form-select option {
    color: #212529;
}

.form-label {
    margin-bottom: .35rem;
    font-weight: 700;
    color: #0f172a;
}

.tb-card .card-body .form-label {
    font-size: .9rem;
}

/* Header */
.tb-hero-top {
    background: var(--tb-navy);
}

.tb-hero-inner {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}

.tb-logo {
    display: block;
    width: 100%;
    max-width: 750px;
    height: auto;
    margin: 0 auto;
}

.tb-hero-gold {
    background: var(--tb-gold);
    min-height: 250px;
    padding: 50px 330px 50px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: visible;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.tb-hero-title {
    margin: 0;
    font-size: 2.2rem;
    line-height: 1.25;
    letter-spacing: .5px;
    color: #000;
    font-weight: 400;
}

.tb-hero-subtitle {
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 2px;
}

.tb-ribbon {
    position: absolute;
    right: 8px;
    top: 0;
    height: auto;
    width: 290px;
    z-index: 5;
    filter:
        drop-shadow(0 22px 22px rgba(0, 0, 0, .18)) drop-shadow(0 6px 10px rgba(0, 0, 0, .14));
}

.tb-card {
    border-radius: 0 0 7px 7px;
}

@media (max-width: 426px) {
    .tb-hero-gold {
        min-height: 180px;
        padding: 20px 220px 0 20px;
    }

    .tb-ribbon {
        width: 200px;
        right: 4px;
    }

    .tb-hero-title {
        font-size: 1.5rem;
        font-weight: 600;
    }
}

/* Buttons */
.btn-gradient {
  background: linear-gradient(
    to bottom,
    #1c5fb3 0%,
    #12458c 100%
  );
  border: 1px solid #0f3e7a;
}

.btn-gradient:hover {
  background: linear-gradient(
    to bottom,
    #1a58a6 0%,
    #0f3e7a 100%
  );
  border-color: #0c3466;
}

.btn-soft {
  background: linear-gradient(
    to bottom,
    #f9fafb 0%,
    #eef2f7 100%
  );
  border: 1px solid #d7dee8;
  color: #1f2937;
  font-weight: 500;
}

.btn-soft:hover {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #e5ebf2 100%
  );
  border-color: #cbd5e1;
}

.btn-soft:active {
  background: #e2e8f0;
}

/* Remove hover + click affordance from step indicators */
.nav-underline .nav-link {
  cursor: default;
  pointer-events: none;
}

.nav-underline .nav-link:hover {
  text-decoration: none;
}