
/* Stepper (Multi-Step forms) */
/*.Stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.Step {
    flex: 1;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.Step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #efefef;
    z-index: 1;
}

[dir="rtl"] .Step:not(:last-child)::after {
    left: auto;
    right: 50%;
}

.StepNum {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #efefef;
    color: var(--SecondaryBGColor);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.Step.active .StepNum {
    background: var(--PrimaryBGColor);
    color: var(--PrimaryTextColor);
}

.Step.Completed .StepNum {
    background: var(--SuccessBGColor);
    color: white;
}

.StepTitle {
    font-size: 0.875rem;
    color: var(--SecondaryBGColor);
}

.Step.active .StepTitle {
    color: var(--PrimaryBGColor);
    font-weight: bold;
    text-decoration: none;
}
*/







.UploadContainer{
    max-width: unset;
}















.RoleCardsCont {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.RoleCard {
    background: white;
    width: 180px;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;

}

.RoleCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.RoleCard svg {
    width: 44px;height: 44px;
    margin-bottom: 8px;
    stroke:#333;
}

.RoleTitle {
    margin: 0;
    font-size: 20px;
    line-height: 20px;
    color: #333;
}


.RegistrationCardsCont{
    width: fit-content !important;
    max-width: 100%;
    margin: 0 auto;
    background-image: url(../img/BGs/QuraanDesign.png);
    background-size: cover;
    background-position: center;
    position: relative;
}
.RegistrationCardsCont:before{
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top:0;
    left:0;
    background-color: #ffffffe3;
}
.RegistrationCardsCont .AuthFormContainer{
    position: relative;
    z-index: 2;
}