/* Registration Page Style */

.registration-page-header{
    padding-top: 200px;
}
.registration-header {
    background: linear-gradient(
        45deg,
        rgba(48, 10, 9, 1) 0%,
        rgba(150, 31, 28, 1) 100%
    );
    padding: 30px 100px;
    border-radius: 10000px;
    width: 100%;
    position: relative;
    color: #fff;
}

.registration-header .registration-header-img{
    position: absolute;
    bottom: 0px;
    right: 100px;
    max-width: 400px;
}

.registration-header h2{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.registration-header .registration-header-content{
    font-size: 18px;
    line-height: 1.6;
    color: #adadad;
    max-width: 600px;
}

.registration-section{
    padding: 100px 0px;
}

.registration-sidebar{
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0px 3px 10px 0px rgb(240, 240, 240);
    margin-right: 30px;
}

.registration-sidebar .sidebar-logo{
    max-width: 100%;
}

.registration-sidebar h3{
    font-weight: 700;
    font-size: 20px;
}

.registration-sidebar p{
    color: #777777;
    line-height: 2;
    font-size: 14px;
    margin-bottom: 30px;
}

.registration-sidebar ol li{
    margin-bottom: 5px;
}

.registration-sidebar ol li p{
    margin-bottom: 5px;
    color: #0f0f0f;
    font-size: 14px;
}

.registration-form-wrapper{
    padding: 50px;
}

.registration-form-wrapper h3{
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 24px;
    color: #4D0E0B;
}

.registration-form{
    margin-bottom: 50px;
}

.registration-form label{
    font-weight: 600;
    margin-bottom: 5px;
}

.registration-form .form-group{
    margin-bottom: 20px;
}

.registration-form .form-group .form-info{
    font-size: 12px;
    color: #ADADAD;
    margin-top: 10px;
}

/* Wrapper */
.stepper-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

/* Stepper */
.stepper {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 480px;
}

/* LINE — trimmed so it DOES NOT touch first/last step */
.step-line {
    position: absolute;
    top: 16px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
    transition: background-color 0.3s ease;
}

/* Step */
.step {
    position: relative;
    z-index: 2;
    width: 33.333%;
    text-align: center;
}

/* Circle */
.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Label */
.step-label {
    margin-top: 8px;
    font-size: 14px;
    color: #333;
    transition: color 0.3s ease;
}

/* Active */
.step.active .step-circle {
    background-color: #7b1e1e;
    color: #fff;
    transform: scale(1.05);
}

.step.active .step-label {
    font-weight: 600;
}

/* Completed */
.step.completed .step-circle {
    background-color: #7b1e1e;
    color: #fff;
}

/* =========================
   MOBILE — STACKED VERSION
   ========================= */
@media (max-width: 576px) {
    .stepper {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .step {
        display: flex;
        align-items: center;
        width: 100%;
        text-align: left;
    }

    .step-circle {
        margin: 0;
        margin-right: 12px;
    }

    .step-label {
        margin-top: 0;
    }

    .step-line {
        display: none;
    }
}

.form-step { display: none; }

#resumeBanner {
    background: #fff3cd;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 6px;
}

#resumeBanner .btn{
    margin-left: 20px;
    top: 0px;
    font-size: 12px;
}

.registration-confirmation-section{
    padding: 50px 0px;
}

.confirmation-page{
    text-align: center;
}

.confirmation-content h4{
    font-weight: 700;
    color: #8C1D18;
    margin: 20px 0px;
}

.registration-confirmation-section p{
    color: #0f0f0f;
}

.account-info-box{
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0px 3px 10px 0px rgb(240, 240, 240);
    max-width: 450px;
    margin: 50px auto;
}

.account-info-box .header{
    position: absolute;
    top: -20px;
    left: 0px;
    width: 100%;
    text-align: center;
}

.account-info-box .header .title{
    display: inline-block;
    background-color: #8C1D18;
    color: #fff;
    font-weight: 400;
    text-align: center;
    padding: 10px 20px;
    width: 100%;
    max-width: 300px;
    border-radius: 100px;
}

.account-detail .account-table{
    width: 100%;
}

.account-table tr td{
    padding: 10px;
    text-align: left;
    width: 50%;
    border-bottom: 1px solid #ddd;
}

.account-table tr:last-child td{
    border-bottom: none;
}

