﻿
.rpt-course-item {
    margin-top: 10px;
    margin-bottom: 10px;
}

.receipt-wrapper {
    margin-top: 40px;
}

.receipt-content-wrapper {
    max-width: 700px;
    margin: auto;
    /*background-color: aliceblue;*/
    display: flex;
    justify-content: center;
    border: 1px solid #969696;
}

.receipt-content {
    padding: 60px;
}

.receipt-course-info {
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 500;
    padding: 20px 30px;
    border: 1px solid #c9c9c9;
    margin-bottom: 10px;
}

.receipt-subtotal-info {
    font-family: Roboto;
    font-size: 15px;
    font-weight: 500;
    padding: 20px 30px;
    border: 1px solid #c9c9c9;
    margin-bottom: 10px;
}

.receipt-warning {
    font-family: "Times New Roman", Times, serif;
    font-size: 15px;
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
    background: whitesmoke;
    margin-top: 10px;
    letter-spacing: 0.2px;
}

.receipt-des {
    font-family: Arial;
    font-size: 15px;
    line-height: 22px;
    padding-bottom: 10px;
    font-weight: 400;
}


.thank-you-title {
    font-family: Roboto;
    font-size: 38px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
}

.thank-you-header {
    font-family: Roboto;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}


.receipt-email span {
    text-decoration: underline;
}

.receipt-choice-btn {
    display: flex;
    margin-top: 25px;
    justify-content: space-between;
}

.discount {
    margin-top: 10px;
}

.discount-title {
    font-weight: 600;
}

.paid {
    font-family: Arial;
    font-size: 15px;
    font-weight: 500;
    margin-top: 15px;
}

@media screen and (max-width: 550px) {
    .receipt-content {
        padding: 50px;
    }

    .receipt-choice-btn {
        display: block;
        text-align: center;
    }
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

    .container * {
        font-family: 'Montserrat', sans-serif;
        color: #000;
    }

/* Title and Subtitle */
    .container .title {
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        text-transform: capitalize;
    }

    .container .subtitle {
        text-align: center;
        font-size: 16px;
        color: #555;
    }

.highlight {
    color: #007BFF;
    text-decoration: underline;
}

.next-steps-title {
    font-size: 34px;
    font-weight: 700;
    color: #FF0000;
    margin-top: 60px;
    margin-bottom: 30px;
}

.next-steps-title {
    font-size: 34px;
    font-weight: 700;
    color: #FF0000;
    margin-top: 60px;
    margin-bottom: 30px;
}

.step-list {
    font-size: 18px;
    margin: 10px 0;
}

.step-list-item {
    margin-bottom: 45px;
}

    .step-list-item strong {
        font-size: 20px;
    }


.links {
    color: #007BFF;
    text-decoration: underline;
    cursor: pointer;
}

/* Questions Section */
.questions {
    text-align: center;
    font-size: 18px;
    margin: 20px 0;
}

.email {
    color: #000000;
}

/* Button */
.button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.button {
    background-color: #0b2938;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 20px;
    margin: auto;
    max-width: 300px;
    width: 100%;
}

    .button:hover {
        background-color: #0b4663;
    }

/* ───────────────────────────────────────────────
   Confirmation Page Redesign – supplemental rules
   (added 2025‑07‑03; non‑destructive to existing styles)
──────────────────────────────────────────────────*/

/* brand palette variables (fallback-safe) */
:root{
  --primary-color:#0C2134;
  --border-color:#E0E6ED;
  --bg-card:#FFFFFF;
  --radius-lg:12px;
  --radius-sm:6px;
}

/* success check‑mark container */
.success-icon{
    margin-bottom:32px;
    text-align:center;
}
.success-icon svg{
    width:112px;
    height:112px;
}

/* card that wraps the numbered steps */
.steps-card{
    background: transparent;
    border-radius:var(--radius-lg);
    border: 1px solid #D1D5DB;
    box-shadow: none;
    padding:32px 24px 40px;
    text-align:left;
}

/* ordered step list – outline/minimal style */
.step-list{
    list-style:none;
    padding:0;
    margin:0;
    counter-reset:step;
}

.step-list-item{
    position:relative;
    padding:28px 24px 28px 88px;     /* left space for badge */
    border:1px solid var(--border-color);
    border-radius:var(--radius-lg);
    background:#FFFFFF;
}

.step-list-item::before{
    counter-increment:step;
    content:counter(step);
    position:absolute;
    left:28px;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    border:2px solid var(--primary-color);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    font-size:1.25rem;
    color:var(--primary-color);
}

/* tweak strong heading inside each step for better hierarchy */
.step-list-item strong{
    font-size:20px;
    font-weight:700;
}

/* button hover darkening already handled above; ensure consistency */
.button:hover{
    background-color:#081624;
}

/* registration summary section */
.registration-summary {
    background: #F8F9FA;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 28px 32px;
    margin-bottom: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.registration-summary h3 {
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E8EAED;
}

.summary-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.summary-label {
    font-weight: 600;
    color: #374151;
    font-size: 16px;
}

.summary-value {
    font-weight: 500;
    color: #111827;
    font-size: 16px;
    text-align: left;
    flex: 1;
    margin-left: 24px;
}