:root {
    --wizard-primary-color: #092D25;
    --wizard-secondary-color: #3f37c9;
    --wizard-success-color: #4cc9f0;
    --wizard-light-color: #f8f9fa;
    --wizard-dark-color: #212529;
}

.wizard-card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.95);
}

.wizard-header {
    background-color: var(--wizard-light-color);
    border-radius: 15px 15px 0 0;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-title {
    color: var(--wizard-primary-color);
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
}

.wizard-card .nav-pills .nav-link {
    border-radius: 10px;
    margin: 5px;
    padding: 15px 10px;
    font-weight: 500;
    color: var(--wizard-dark-color);
    background-color: #f0f2f5;
    transition: all 0.3s ease;
}

.wizard-card .nav-pills .nav-link.active {
    background-color: var(--wizard-primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.wizard-card .nav-pills .nav-link:not(.active):hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.wizard-card .nav-pills .nav-link i {
    font-size: 1.2rem;
    display: block;
    margin: 0 auto 5px;
}

.wizard-card .progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
    margin: 25px 0;
}

.wizard-card .progress-bar {
    background: linear-gradient(90deg, var(--wizard-primary-color), var(--wizard-success-color));
    border-radius: 4px;
}

.wizard-card .btn-primary {
    background-color: var(--wizard-primary-color);
    border-color: var(--wizard-primary-color);
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.2);
    transition: all 0.3s ease;
}

.wizard-card .btn-primary:hover {
    background-color: var(--wizard-secondary-color);
    border-color: var(--wizard-secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(67, 97, 238, 0.3);
}

.wizard-card .btn-danger {
    background-color: #ef476f;
    border-color: #ef476f;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(239, 71, 111, 0.2);
    transition: all 0.3s ease;
}

.wizard-card .btn-danger:hover {
    background-color: #d64161;
    border-color: #d64161;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(239, 71, 111, 0.3);
}

.wizard-card .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.wizard-card .form-control:focus {
    border-color: var(--wizard-primary-color);
    box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.25);
    background-color: white;
}

.wizard-card .input-group-text {
    border-radius: 0 8px 8px 0;
    background-color: #f0f2f5;
    border: 1px solid #ced4da;
    cursor: pointer;
}

.wizard-card .secure-icon {
    color: var(--wizard-primary-color);
    font-size: 1.2rem;
}

.wizard-card .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--wizard-primary-color);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.wizard-card #passwordStrength {
    height: 5px;
    margin-top: 10px;
    border-radius: 3px;
}

.wizard-card .text-success-custom {
    color: #06d6a0;
}

.wizard-card .text-warning-custom {
    color: #ffd166;
}

.wizard-card .text-danger-custom {
    color: #ef476f;
}

.wizard-card .password-criteria li {
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.wizard-card .password-criteria li.valid {
    color: #06d6a0;
}

.wizard-card .password-criteria li.invalid {
    color: #ef476f;
}

.wizard-card .success-animation {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #06d6a0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 50px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(6, 214, 160, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(6, 214, 160, 0);
    }
}

.wizard-card .form-wizard-header .nav-link {
    cursor: not-allowed;
}
