body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: url('../ASSETS/sample.webp') no-repeat center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.register-card {
    background: white;
    padding: 40px 36px;
    border-radius: 20px;
    width: 420px;
    max-width: 95%;
    color: #333;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Wizard Progress */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.wizard-progress .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #bbb;
}

.wizard-progress .step span {
    margin-top: 5px;
}

.wizard-progress .step.active {
    color: #0d6efd;
}

.wizard-progress .step.active::before {
    background: #0d6efd;
}

.wizard-progress .line {
    flex: 1;
    height: 2px;
    background: #ddd;
    margin: 0 10px;
}

.wizard-progress .line.active {
    background: #0d6efd;
}

/* Inputs */
label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
}

.actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn {
    padding: 12px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary {
    background: #0d6efd;
    color: #fff;
}

.btn-primary:hover {
    background: #0b5ed7;
}

.btn.secondary {
    background: #eee;
    color: #333;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    font-size: 0.95rem;
}

.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    color: #666;
    user-select: none;
}

/* Strength meter */
.strength-meter {
    margin-top: -10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.strength-weak {
    color: #e74c3c;
}

.strength-medium {
    color: #f39c12;
}

.strength-strong {
    color: #27ae60;
}

.match {
    color: #27ae60;
}

.mismatch {
    color: #e74c3c;
}

.hidden {
    display: none;
}

.webcam video {
    border-radius: 6px;
    margin-bottom: 10px;
}

.choice-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.instructions {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.upload-section {
    margin-bottom: 20px;
}