/* Registration Flow Page Styles */

.registration-flow-page {
    background: #0F2923;
    min-height: 100vh;
    padding: 40px 20px;
}

.registration-flow-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.registration-flow-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.registration-flow-header h1 {
    color: #0F2923;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.registration-flow-header p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.registration-flow-close {
    background: transparent;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.registration-flow-close:hover {
    background: #f0f0f0;
    color: #0F2923;
}

.registration-flow-steps {
    position: relative;
    padding-left: 40px;
}

.registration-flow-steps::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
}

.registration-flow-step {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-number {
    position: absolute;
    left: -55px;
    top: 30px;
    width: 50px;
    height: 50px;
    background: #FF1744;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 23, 68, 0.3);
    z-index: 2;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.step-header h3 {
    color: #0F2923;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-header i {
    color: #FF1744;
    font-size: 20px;
}

.step-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-content {
    margin-top: 20px;
}

.qr-code-container {
    border: 2px dashed #FF1744;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    background: #fff;
}

.qr-code-image {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    object-fit: contain;
}

.qr-code-text {
    color: #FF1744;
    font-weight: 600;
    font-size: 16px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #0F2923;
    font-size: 16px;
}

.checklist-item i {
    color: #FF1744;
    font-size: 18px;
}

.download-section {
    margin: 20px 0;
}

.download-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0F2923;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.download-item:hover {
    background: #f0f0f0;
}

.download-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-item i.fa-file {
    color: #FF1744;
    font-size: 20px;
}

.download-item span {
    color: #0F2923;
    font-size: 16px;
}

.download-item i.fa-download {
    color: #999;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.download-item i.fa-download:hover {
    color: #FF1744;
}

.action-required {
    background: #fff3f3;
    border-left: 4px solid #FF1744;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.action-required-text {
    color: #0F2923;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 15px;
}

.status-orange {
    background: #FF8C00;
    color: #fff;
}

.status-blue {
    background: #2196F3;
    color: #fff;
}

.status-green {
    background: #4CAF50;
    color: #fff;
}

.status-purple {
    background: #9C27B0;
    color: #fff;
}

.status-teal {
    background: #009688;
    color: #fff;
}

.upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #FF8C00;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.upload-btn:hover {
    background: #e67e00;
    color: #fff;
}

.step-note {
    background: #fff9e6;
    border-left: 4px solid #FFC107;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .registration-flow-container {
        padding: 30px 20px;
    }
    
    .registration-flow-header h1 {
        font-size: 24px;
    }
    
    .registration-flow-steps {
        padding-left: 30px;
    }
    
    .registration-flow-steps::before {
        left: 10px;
    }
    
    .step-number {
        left: -40px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .registration-flow-step {
        padding: 20px;
    }
    
    .step-header h3 {
        font-size: 18px;
    }
}
