.form-content-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px 32px 48px 32px;
    color: #003366;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 150%;
    display: grid!important;
    gap: 24px;
}

@media (max-width: 768px) {
    .form-content-wrapper {
        padding: 24px 12px 24px 12px;
    }
}

.form-section {
    display: grid;
    gap: 24px;
}

.form-section:has(.step-title) {
    gap: 12px;
}

.form-section:has(.section-title) {
    gap: 12px;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-grid label {
    display: flex;
    flex-direction: column;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.form-grid input,
.form-grid select {
    color: #003366;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 150%;
    border: 1px solid #335C85;
    border-radius: 4px;
    background-color: #FCFDFD;
    height: 44px;
}

/* Select options text color */
.form-grid select option {
    color: #00050A;
}

/* Radio group gap */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.file-upload-box {
    border: 2px dashed #c5d2df;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    background-color: #f9fbfc;
    cursor: pointer;
    border-radius: 4px;
}

.file-upload-box p {
    margin: 0;
    font-weight: 500;
}

.file-upload-box small {
    display: block;
    margin-top: 0.5rem;
    color: #6a7b8c;
    font-size: 0.8rem;
}

/* Summary description styling */
.summary-description {
    font-weight: 400;
}

/* Attention box styling */
.attention-box {
    display: flex;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-bottom: 4px solid #FDC600;
    background: #FFF4CC;
}

.attention-box p {
    color: #036;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.032px;
    margin: 0;
}

.attention-box strong {
    font-weight: 700;
}

/* Message textarea styling */
.message-label {
    color: #036;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.032px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message-textarea {
    border-radius: 4px;
    padding: 16px;
    border: 1px solid #CCD7E6;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 16px;
    line-height: 150%;
    color: #003366;
    background-color: #FCFDFD;
    resize: vertical;
    min-height: 120px;
}

.message-textarea::placeholder {
    color: #459752;
}

/* Notes page styling */
.form-section span {
    font-size: 16px;
    color: #00050A;
}

.form-section li {
    font-size: 16px;
    color: #00050A;
}

.form-section .form-check-label {
    font-size: 16px;
    color: #036;
}

.form-section .form-check-input:checked {
    background-color: #003366;
    border-color: #003366;
}

/* Home page container styling */
.form-content-rounded-bg {
    max-width: 700px;
    margin: 0 auto;
    color: #003366;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 150%;
    display: grid!important;
    gap: 24px;
    border-radius: 16px;
    border: 1px solid #F3F4F6;
    background: #FFF;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 24px;
}

@media (max-width: 768px) {
    .form-content-rounded-bg {
        padding: 12px;
        margin: 12px;
    }
}

