









/* =================== MAIN BACKGROUND =================== */
.MainBackground {
    background-color: #f9f9f9; /* light gray for soft contrast */
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* =================== PAGE CONTENT CONTAINER =================== */
.PageContentContainer {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    margin: 20px auto;
}

.AgencyLogoContainer {
    height: 100px;
    background-image: url('ImageRenderer.ashx?image=d252e69c-6747-4c52-a9f3-7bf6e5989616');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    margin: 0 auto;
    margin-bottom: 10px;
}
.StepSubContentContainer {
    padding-left: 240px;
    margin: 10px;
}

.EntrySection {
    width: auto;
}

/* =================== STEP HEADERS =================== */
.StepCaption {
    color: #1446a0; /* brand blue */
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.StepList {
    z-index: 10;
    margin-inline: auto;
  
}

/* =================== ENTRY FIELDS =================== */
.EntryContainer input, .EntryContainer select {
    border: none;
    background: transparent;
    font-size: 0.75rem;
    outline: none;
}

.EntryContainer input {
    background: #FEC8CA;
    color: rgb(65 125 191) !important;
}

.WelcomeCaptionContainer, .WelcomeEntryRequiredContainer {
    width: 200px;
}

.NameEntry {
   width: 250px;
}

.EmailEntry {
   width: 250px;
}

/* Highlight on focus */
.EntryContainer input:focus, .EntryContainer select:focus,
.EntryRequiredContainer input:focus, .EntryRequiredContainer select:focus {
    border: 2px solid #ff353b; /* brand red */
    box-shadow: 0 0 6px rgba(255,53,59,0.4);
}

/* Labels */
.EntryCaptionContainer, .SectionLabel {
    color: #1446a0;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.SectionLabel {
   font-size: 1rem;
   margin-left: 20px;
}

/* Section dividers */
.SectionDivider, .GeneralSectionDivider, .FinalSectionDivider {
    border-top: 2px solid #1446a0;
}

/* =================== BUTTONS =================== */
.WelcomeNavButtonContainer .Button {
    background-color: #ff353b;
    color: white;
    border-radius: 10px;
    padding: 12px 25px;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
}

.WelcomeNavButtonContainer {
    margin-inline: auto;
    display: flex;
    justify-content: center;
    width: auto;
}


.SmallButton {
    background-color: #ff353b;
    color: white;
    border-radius: 10px;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 0.75rem;
    border: none;
    transition: all 0.3s ease;
}

.PreviousButton {
    background-color: #182875 !important;
}

.WelcomeNavButtonContainer .Button:hover {
    background-color: #e62a30;
    box-shadow: 0 5px 15px rgba(255,53,59,0.4);
    cursor: pointer;
}

.RightNavButtonContainer {
   margin-inline: auto;
   justify-self: start;
   position: relative;
}


.NavButtonContainer {
  display: flex;
  justify-content: space-between; /* spreads child elements across full width */
  align-items: center;            /* vertically centers them */
  width: 100%;                    /* ensures it takes full container width */
  padding: 0 1rem;                /* optional spacing on sides */
}
  
.LeftNavButtonContainer,
.RightNavButtonContainer {
  align-items: center;
}

.LeftNavButtonContainer {
  left: 100px;
}

/* =================== GREETING =================== */
.GreetingLabel, .GreetingExtraContainer1, .GreetingExtraContainer2 {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

/* =================== AGENCY CONTACT =================== */
.AgencyContactContainer {
    background-color: #e6f0ff; /* subtle blue block */
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.AgencyContactHeaderContainer span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1446a0;
}

/* =================== FOOTER =================== */
.FooterContainer {
    font-size: 0.85rem;
    color: #777;
    text-align: center;
    margin-top: 40px;
    margin-inline: auto;
}

.SectionDivider {
    width: auto;
  }
  
.FooterContainer {
   width: auto;
}

.FooterTerms.Link {
    color: #1446a0;
    text-decoration: underline;
}

/* =================== RESPONSIVE =================== */
@media only screen and (max-width: 768px) {
    .PageContentContainer {
        padding: 20px;
        margin: 10px;
    }
    .StepCaption {
        font-size: 1.5rem;
    }
    .WelcomeNavButtonContainer .Button {
        width: 100%;
        padding: 15px;
    }
  
  .EntrySection {
    width: 400px;
   }
  
  .WelcomeNavButtonContainer {
    width: auto;
  }
  
  .SectionDivider {
    width: auto;
  }
  
  .FooterContainer {
    width: auto;
  }
  
  .StepList {
    z-index: 10;
    text-align: justify;
    display: inline-block;
    min-width: 440px;
    max-width: 775px;
    padding-top: 10px;
}

}