.error-alert {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hex-input.valid {
    border-color: #28a745 !important;
    background-color: rgba(40, 167, 69, 0.05);
}

.hex-input.invalid {
    border-color: #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.05);
}

.hex-input.partial {
    border-color: #ffc107 !important;
    background-color: rgba(255, 193, 7, 0.05);
}

.hex-feedback {
    font-size: 0.875rem;
    padding: 4px 8px;
    border-radius: 4px;
    display: none;
}

.hex-feedback.valid {
    display: block;
    background-color: rgba(40, 167, 69, 0.1);
    color: #155724;
    border-left: 3px solid #28a745;
}

.hex-feedback.invalid {
    display: block;
    background-color: rgba(220, 53, 69, 0.1);
    color: #721c24;
    border-left: 3px solid #dc3545;
}

.hex-feedback.partial {
    display: block;
    background-color: rgba(255, 193, 7, 0.1);
    color: #856404;
    border-left: 3px solid #ffc107;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #dee2e6;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #dee2e6;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    font-weight: bold;
}

.step.active .step-circle {
    background-color: #0d6efd;
    color: white;
}

.step.completed .step-circle {
    background-color: #198754;
    color: white;
}

.step-label {
    font-size: 0.875rem;
    color: #6c757d;
}

.step.active .step-label {
    color: #0d6efd;
    font-weight: 500;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-type-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.user-type-btn {
    flex: 1;
    padding: 10px;
    border: 2px solid #dee2e6;
    background: white;
    border-radius: 8px;
    color: #6c757d;
    transition: all 0.3s;
}

.user-type-btn.active {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-weight: 500;
}

.btn-reset {
    background: linear-gradient(135deg, #6C63FF, #FF6584);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s;
}

.btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 64px;
    color: #198754;
    margin-bottom: 20px;
}

.info-alert {
    background-color: rgba(13, 110, 253, 0.1);
    border-left: 4px solid #0d6efd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.verification-code-input {
    font-size: 1.5rem;
    letter-spacing: 10px;
    text-align: center;
    font-weight: bold;
}

.password-display {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.password-display h6 {
    color: #198754;
    margin-bottom: 10px;
}

.notification-badge {
    position: relative;
    display: inline-block;
}

.notification-badge .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 10px;
}