/* Header */
.page-header {
    padding-top: 9.5rem;
    padding-bottom: 24px;
}

.header-title {
    font-family: "Crimson";
    font-style: normal;
    font-weight: bold;
    font-size: 40px;
    color: var(--secondary);
}
/* End Header */

#form-validation label {
    font-family: "Source";
}

.btn-submit {
    border-radius: 8px;
    background-color: var(--accent);
    font-family: "Source";
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    color: white;
    line-height: normal;
    transition: all 200ms ease;
}

.btn-submit:hover {
    background-color: var(--accent);
    color: white;
    filter: brightness(0.8);
}

@media (max-width: 767.98px) {
    .page-header .container-fluid .header-title {
        font-size: 32px;
    }
}
