/* ============================================
   REGISTRATION PAGE STYLES
   ============================================ */

/* Progress Bar */
.registration-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}
.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 3px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6c757d;
    transition: all 0.3s;
    font-size: 18px;
}
.step.active .step-circle,
.step.completed .step-circle {
    background: linear-gradient(135deg, #0066cc, #0052a3);
    border-color: #0066cc;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}
.step-label {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
}
.step.active .step-label,
.step.completed .step-label {
    color: #0066cc;
}
.step-line {
    flex: 1;
    height: 3px;
    background: #dee2e6;
    margin: 0 -10px;
    margin-bottom: 30px;
}
.step.completed + .step-line,
.step-line.completed {
    background: linear-gradient(90deg, #0066cc 0%, #28a745 100%);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInSlide 0.5s ease;
}
.form-step.active {
    display: block;
}
@keyframes fadeInSlide {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Scheme Option Cards */
.scheme-option-card {
    position: relative;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
    height: 100%;
}
.scheme-option-card:hover {
    border-color: #0066cc;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
    transform: translateY(-3px);
}
.scheme-checkbox {
    width: 22px;
    height: 22px;
    cursor: pointer;
    flex-shrink: 0;
}

.scheme-option-label {
    cursor: pointer;
    width: 100%;
}
.scheme-option-card input:checked ~ .scheme-option-label {
    color: #0066cc;
}
.scheme-option-card:has(input:checked) {
    border-color: #0066cc;
    background: linear-gradient(135deg, #e7f3ff 0%, #fff 100%);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}
.scheme-option-label {
    cursor: pointer;
    margin: 0;
    width: 100%;
}
.scheme-icon-small {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.total-amount-box {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #28a745;
    text-align: center;
}
.total-amount-box h5 {
    color: #155724;
    font-weight: 700;
}

/* Upload Cards */
.upload-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s;
    height: 100%;
}
.upload-card:hover {
    border-color: #0066cc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.upload-label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
}
.upload-label .badge {
    margin-right: 8px;
    font-size: 11px;
}

.upload-zone {
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafbfc;
    position: relative;
}
.upload-zone:hover {
    border-color: #0066cc;
    background: #f0f8ff;
}
.upload-zone.dragover {
    border-color: #28a745;
    background: #d4edda;
    border-style: solid;
}
.upload-zone.has-file {
    border-style: solid;
    border-color: #28a745;
    background: #f8fff8;
}
.upload-placeholder {
    text-align: center;
    width: 100%;
}
.upload-placeholder i {
    display: block;
}
.upload-preview {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.upload-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
}
.btn-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 5;
}
.btn-remove:hover {
    background: #c82333;
    transform: rotate(90deg) scale(1.1);
}

.docs-list {
    max-height: 150px;
    overflow-y: auto;
    width: 100%;
    text-align: left;
}
.doc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 8px 12px;
    border-radius: 5px;
    margin-bottom: 5px;
    border: 1px solid #e9ecef;
}
.doc-item .doc-name {
    font-size: 12px;
    color: #333;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.doc-item .doc-size {
    font-size: 11px;
    color: #6c757d;
    margin-left: 5px;
}

/* Document Checklist */
.document-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.document-checklist li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #495057;
    transition: all 0.3s;
}
.document-checklist li:last-child {
    border-bottom: none;
}
.document-checklist li.completed {
    color: #28a745;
    text-decoration: line-through;
}
.document-checklist li.completed i {
    color: #28a745 !important;
}
.document-checklist li i {
    margin-right: 10px;
    font-size: 10px;
    transition: all 0.3s;
}


.scheme-option-card {
    cursor: pointer;
}

.scheme-option-card.selected {
    border-color: #0066cc;
    background: linear-gradient(135deg, #e7f3ff 0%, #fff 100%);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}
/* Background Gradient */
.bg-gradient-primary {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .step-label {
        font-size: 11px;
    }
    .upload-zone {
        min-height: 150px;
    }
    .scheme-option-card {
        padding: 12px;
    }
}
