:root {
    --msatp-charcoal: #1a1a1a;
    --msatp-charcoal-soft: #2b2b2b;
    --msatp-burgundy: #7a1e2b;
    --msatp-burgundy-dark: #5d1720;
    --msatp-gold: #e8a43c;
    --msatp-gold-dark: #c88520;
    --msatp-cream: #f8f5ef;
}

body {
    background-color: var(--msatp-charcoal);
}

.msatp-hero {
    min-height: 100vh;
    background:
        radial-gradient(ellipse at top, rgba(122, 30, 43, 0.55) 0%, rgba(26, 26, 26, 0) 60%),
        linear-gradient(135deg, var(--msatp-charcoal) 0%, var(--msatp-charcoal-soft) 100%);
    color: #ffffff;
    padding: 56px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.msatp-hero__container {
    width: 100%;
    max-width: 960px;
    text-align: center;
}

.msatp-hero__brand {
    margin-bottom: 28px;
}

.msatp-hero__logo {
    max-width: 340px;
    width: 100%;
    height: auto;
}

.msatp-hero__heading {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.msatp-hero__lede {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.msatp-hero__lede a {
    color: var(--msatp-gold);
    text-decoration: underline;
}

.msatp-hero__lede a:hover {
    color: #ffffff;
}

.msatp-alert {
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: left;
}

.msatp-hero__forms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

@media (max-width: 640px) {
    .msatp-hero__forms {
        grid-template-columns: 1fr;
    }
    .msatp-hero__heading {
        font-size: 1.75rem;
    }
    .msatp-hero__logo {
        max-width: 260px;
    }
}

.msatp-form-card {
    background: #ffffff;
    color: #212529;
    border-radius: 8px;
    padding: 28px 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    border-top: 4px solid var(--msatp-burgundy);
}

.msatp-form-card__title {
    font-weight: 700;
    color: var(--msatp-burgundy);
    margin: 0 0 6px;
}

.msatp-form-card__subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.msatp-form-card .form-control {
    border-radius: 4px;
    padding: 10px 12px;
    border: 1px solid #ced4da;
}

.msatp-form-card .form-control:focus {
    border-color: var(--msatp-gold);
    box-shadow: 0 0 0 0.2rem rgba(232, 164, 60, 0.25);
}

.msatp-btn {
    padding: 11px 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 4px;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.05s ease;
}

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

.msatp-btn--primary {
    background-color: var(--msatp-gold);
    color: var(--msatp-charcoal);
}

.msatp-btn--primary:hover,
.msatp-btn--primary:focus {
    background-color: var(--msatp-gold-dark);
    color: var(--msatp-charcoal);
}

.msatp-btn--secondary {
    background-color: var(--msatp-burgundy);
    color: #ffffff;
}

.msatp-btn--secondary:hover,
.msatp-btn--secondary:focus {
    background-color: var(--msatp-burgundy-dark);
    color: #ffffff;
}

.msatp-form-card__link {
    display: block;
    margin-top: 14px;
    text-align: center;
    color: var(--msatp-burgundy);
    font-size: 0.9rem;
}

.msatp-form-card__link:hover {
    color: var(--msatp-burgundy-dark);
    text-decoration: underline;
}

.footer {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.82);
}

.footer h3 {
    color: #ffffff;
    font-weight: 700;
}

.footer a.text-primary {
    color: var(--msatp-gold) !important;
}

.footer a.text-primary:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.15);
}

.text-center[style*="color:#666"] {
    color: rgba(255, 255, 255, 0.6) !important;
}

.text-center[style*="color:#666"] a {
    color: var(--msatp-gold);
    text-decoration: underline;
}

.text-center[style*="color:#666"] a:hover {
    color: #ffffff;
}
