/* Registration Form Styles */

/* Step Progress Bar */
.step-progress {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    position: relative;
}

.step-progress::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 33.33%;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: #6c757d;
    font-size: 18px;
    transition: all 0.3s ease;
}

.step-text {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.step-item.active .step-icon {
    background-color: #7b1113;
    border-color: #7b1113;
    color: #fff;
}

.step-item.active .step-text {
    color: #7b1113;
    font-weight: 600;
}

/* Registration Container */
.registration-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.login-logo img {
    max-width: 100px;
    height: auto;
}

/* Form Styles */
.registration-step {
    transition: all 0.3s ease;
}

.form-group label {
    font-weight: 500;
    color: #495057;
}

.btn-pup {
    background-color: #7b1113;
    border-color: #7b1113;
    color: #fff;
}

.btn-pup:hover {
    background-color: #5e0d0f;
    border-color: #5e0d0f;
    color: #fff;
}

/* Webcam Container */
.webcam-container {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    width: 320px;
    height: 240px;
    background-color: #f8f9fa;
}

#webcam {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Face Capture */
#captured-image {
    margin-top: 15px;
}

#face-preview {
    border: 2px solid #28a745;
    border-radius: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .registration-container {
        padding: 20px;
    }
    
    .webcam-container {
        width: 100%;
        max-width: 320px;
    }
}
