/* Registration Forms - Extracted from registration templates */

/* Progress indicator */
.progress-container {
    margin-bottom: 2rem;
}

.progress-thin {
    height: 10px;
}

.progress-half {
    width: 50%;
}

.progress-full {
    width: 100%;
}

/* Password strength indicator */
.password-strength {
    height: 5px;
    border-radius: 3px;
    transition: all 0.3s;
}

.password-strength.weak {
    width: 33%;
    background-color: #dc3545;
}

.password-strength.medium {
    width: 66%;
    background-color: #ffc107;
}

.password-strength.strong {
    width: 100%;
    background-color: #28a745;
}

/* Verification status */
.verification-status {
    display: none;
}

.verification-status.show {
    display: inline-block;
}

/* File upload */
.file-upload-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.file-list {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}
