﻿.register-selector {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.register-box {
    width: 250px;
    max-width: 100%;
    padding: 10px;
    border-radius: 20px;
    background: #fff;
    border: 2px solid #e5e5e5;
    cursor: pointer;
    text-align: center;
    transition: .3s;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    text-align: center;
}
    .register-box i {
        color:var(--master);
        font-size:48px !important;
    }
    .register-box:hover {
        transform: translateY(-5px);
        border-color: var(--master);
    }

    .register-box .icon i {
        font-size: 30px;
    }

    .register-box .icon {
        padding: 20px;
    }




    .register-box.active {
        border-color: #FFC823;
        background: linear-gradient(135deg,#FFF9E6,#FFF3BF);
        box-shadow: 0 10px 25px rgba(255,200,35,.25);
        transform: translateY(-5px);
    }

        .register-box.active h2 {
            color: #111;
        }

        .register-box.active p {
            color: #555;
        }

        .register-box.active .icon {
            color: #FFC823;
        }

        .register-box.active h2,
        .register-box.active p,
        .register-box.active .icon {
            color: #000;
        }

        .register-box.active::after {
            content: "✓";
            position: absolute;
            top: 15px;
            left: 15px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #FFC823;
            color: #111;
            line-height: 32px;
            font-weight: bold;
        }


.eventHeader {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0,0,0,.05);
    margin-bottom: 15px;
}
    .eventHeader span {
        font-size: 24px;
        font-weight: 700;
    }
    .eventHeader h1 {
        margin: 0;
        padding: 0;

        color: #333;
        text-align: center;
        line-height: 1.7;
        position: relative;
        display: inline-block;
    }

        .eventHeader h1::after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            margin: 15px auto 0;
            background: var(--master);
            border-radius: 20px;
        }
/* =========================================================
   Wizard
   ========================================================= */

.wizard {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 40px 0;
    position: relative;
    width: 100%;
}


    /* خط وسط */

    .wizard::before {
        content: "";
        position: absolute;
        top: 22px;
        right: 10%;
        left: 10%;
        height: 2px;
        background: var(--border);
        z-index: 1;
    }


/* =========================================================
   Step
   ========================================================= */

.step {
    width: 20%;
    text-align: center;
    position: relative;
    z-index: 2;
    min-width: 0;
}


    /* شماره / دایره */

    .step span {
        width: 45px;
        height: 45px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        border-radius: 50%;
        background: #fff;
        border: 2px solid var(--border);
        color: var(--gray);
        font-weight: bold;
        transition: background .2s ease, border-color .2s ease, color .2s ease;
    }


    /* عنوان */

    .step label {
        display: block;
        margin-top: 10px;
        color: var(--gray);
        line-height: 1.5;
        white-space: nowrap;
        transition: color .2s ease;
    }


    /* =========================================================
   Active
   ========================================================= */

    .step.active span {
        background: var(--master);
        color: #fff;
        border-color: var(--master);
    }


    .step.active label {
        color: var(--master);
        font-weight: bold;
    }


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 600px) {

    .wizard {
        margin: 25px 0 30px;
        padding: 0 5px;
        box-sizing: border-box;
    }


        /* خط وسط */

        .wizard::before {
            top: 19px;
            right: 10%;
            left: 10%;
            height: 2px;
        }


    /* Step */

    .step {
        width: 20%;
        flex: 0 0 20%;
    }


        /* دایره */

        .step span {
            width: 38px;
            height: 38px;
            font-size: 14px;
            border-width: 2px;
        }


        /* عنوان */

        .step label {
            margin-top: 7px;
            font-size: 12px;
            line-height: 1.4;
            white-space: normal;
            padding: 0 2px;
        }
}


/* =========================================================
   موبایل خیلی کوچک
   ========================================================= */

@media (max-width: 400px) {

    .wizard {
        margin-top: 20px;
        margin-bottom: 25px;
        padding: 0;
    }


        .wizard::before {
            top: 18px;
            right: 8%;
            left: 8%;
        }


    .step span {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }


    .step label {
        font-size: 11px;
        margin-top: 6px;
        line-height: 1.35;
    }
}

.notice {
    background: #fffaf3;
    border: 1px solid #ffd28a;
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 30px;
}

.noticeTitle {
    font-size: 20px;
    margin-bottom: 15px;
}

.notice p {
    line-height: 35px;
    color: #555;
}
.notice i
{
    color:var(--master);
    margin-left:5px;
    font-size:22px;
}


.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: 0 5px 18px rgba(0,0,0,.05);
}

    .card h2 {
        text-align: center;
    }

.subtitle {
    text-align: center;
    color: var(--gray);
    margin: 0;
}
.title {
    text-align: center;
    color: black;
    font-size:24px;
    margin:0;
}
.section-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
    margin: 20px auto 35px;
    font-size: 28px;
    font-weight: 700;
}

    .section-title i {
        color: #f39c12;
        font-size: 26px;
    }


.notice-person {
    display: none;
    align-items: flex-start;
    gap: 15px;
    background: #eef7ff;
    border: 1px solid #b9dcff;
    border-right: 5px solid #2196f3;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 15px 0;    
}

    .notice-person i {
        color: #2196f3;
        font-size: 28px;
        margin-top: 2px;
    }

    .notice-person strong {
        display: block;
        margin-bottom: 8px;
        color: #0d47a1;
    }

    .notice-person ul {
        margin: 0;
        padding-right: 18px;
    }

    .notice-person li {
        line-height: 1.9;
    }
.notice0, .notice1,.notice2, .notice3, .notice4 {
    display: none;
}




.register-success {
    direction: rtl;
    width: 100%;
    max-width: 620px;
    margin: 30px auto;
    text-align: center;
}


/* =========================
   Success
========================= */

.success-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf8ef;
    border: 1px solid #c9efd6;
    color: #22a447;
    box-shadow: 0 8px 25px rgba(34, 164, 71, 0.12);
}

    .success-icon i {
        font-size: 38px;
    }


.success-title {
    margin: 0;
    color: #222;
    font-size: 25px;
    font-weight: 700;
}


.success-subtitle {
    margin-top: 10px;
    color: #777;
    font-size: 15px;
    line-height: 2;
}


.event-name {
    color: #cc0066;
    font-weight: 700;
}


/* =========================
   Login Card
========================= */

.login-card {
    margin-top: 28px;
    padding: 25px;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    text-align: right;
}


.login-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}


.login-card-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    border-radius: 11px;
    background: #f3f6ff;
    color: #4b65d8;
    font-size: 20px;
}


.login-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}


.login-card-description {
    margin-top: 3px;
    font-size: 12px;
    color: #999;
}


/* =========================
   Username / Password
========================= */

.login-info-box {
    display: flex;
    align-items: center;
    min-height: 72px;
    margin-top: 12px;
    padding: 10px 12px;
    background: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    transition: all .2s ease;
}


    .login-info-box:hover {
        background: #fff;
        border-color: #ddd;
        box-shadow: 0 4px 15px rgba(0,0,0,.04);
    }


.login-info-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #fff2f8;
    color: #cc0066;
    font-size: 18px;
}


.password-icon {
    background: #fff8ed;
    color: #d98b16;
}


.login-info-content {
    flex: 1;
    margin-right: 12px;
    min-width: 0;
}


.login-info-label {
    margin-bottom: 5px;
    color: #999;
    font-size: 12px;
}


.login-info-value {
    display: block;
    color: #222;
    font-size: 16px;
    font-weight: 700;
    direction: ltr;
    text-align: right;
    word-break: break-all;
}


/* =========================
   Copy
========================= */

.copy-btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 0;
    border-radius: 8px;
    background: #f1f1f1;
    color: #777;
    cursor: pointer;
    transition: all .2s ease;
}


    .copy-btn:hover {
        background: #e8e8e8;
        color: #333;
    }


    .copy-btn i {
        font-size: 15px;
    }


/* =========================
   Security Message
========================= */

.security-message {
    display: flex;
    align-items: flex-start;
    margin-top: 18px;
    padding: 13px 14px;
    border-radius: 9px;
    background: #f7f9fc;
    color: #777;
    font-size: 12px;
    line-height: 1.9;
}


    .security-message i {
        margin-left: 8px;
        margin-top: 3px;
        color: #6b7a99;
    }


/* =========================
   Actions
========================= */

.card-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    direction: rtl;
}


    .card-actions a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
        font-weight:bold;
        cursor: pointer;
        transition: color .2s ease;
    }


        .card-actions a:hover {
            color: #cc0066;
        }


    .card-actions i {
        margin-left: 5px;
    }


.action-separator {
    width: 1px;
    height: 17px;
    margin: 0 15px;
    background: #ddd;
}


/* =========================
   Login Button
========================= */

.modern-login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    margin-top: 20px;
    border-radius: 10px;
    background: #222;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;
    transition: all .2s ease;
    box-shadow: 0 7px 20px rgba(0,0,0,.12);
}


    .modern-login-button:hover {
        background: #333;
        transform: translateY(-1px);
        box-shadow: 0 10px 25px rgba(0,0,0,.16);
    }


    .modern-login-button i {
        margin-right: 12px;
        font-size: 20px;
    }


/* =========================
   Application
========================= */

.application-section {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    text-align: center;
}


.application-title {
    color: #333;
    font-size: 15px;
    font-weight: 700;
}


    .application-title i {
        margin-left: 6px;
        color: #777;
    }


.application-description {
    margin-top: 7px;
    color: #999;
    font-size: 12px;
    line-height: 1.8;
}


.application-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}






/* =========================
   Print
========================= */

.bannerPrint {
    display: none;
}


.print-banner {
    width: 100%;
    height: auto;
}


@media print {

    .register-success {
        max-width: 100%;
    }

    #btn_print,
    .modern-login-button,
    .application-section,
    .success-icon {
        display: none !important;
    }

    .bannerPrint {
        display: block !important;
    }

    .login-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}


/* =========================
   Mobile
========================= */

@media (max-width: 600px) {

    .register-success {
        width: calc(100% - 25px);
        margin: 20px auto;
    }


    .success-title {
        font-size: 21px;
    }


    .success-subtitle {
        font-size: 13px;
    }


    .login-card {
        padding: 17px;
        border-radius: 12px;
    }


    .login-info-box {
        min-height: 66px;
    }


    .login-info-value {
        font-size: 14px;
    }


    .application-button {
        width: 115px;
    }
}